Skip to content

Commit

Permalink
Merge pull request #17512 from tchaikov/wip-chmod-x
Browse files Browse the repository at this point in the history
common,mon,osd,pybind: silence warning and remove executable mode bit

Reviewed-by: J. Eric Ivancich <ivancich@redhat.com>
  • Loading branch information
tchaikov committed Sep 9, 2017
2 parents de77a93 + 22d1aac commit d40250d
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 4 deletions.
Empty file modified src/include/ceph_features.h 100755 → 100644
Empty file.
5 changes: 1 addition & 4 deletions src/include/interval_set.h
Expand Up @@ -239,17 +239,14 @@ class interval_set {
void intersection_size_asym(const interval_set &s, const interval_set &l) {
typename decltype(m)::const_iterator ps = s.m.begin(), pl;
assert(ps != s.m.end());
T offset = ps->first, prev_offset;
T offset = ps->first;
bool first = true;
typename decltype(m)::iterator mi = m.begin();

while (1) {
if (first)
first = false;
else
assert(offset > prev_offset);
pl = l.find_inc(offset);
prev_offset = offset;
if (pl == l.m.end())
break;
while (ps != s.m.end() && ps->first + ps->second <= pl->first)
Expand Down
Empty file modified src/messages/MOSDOp.h 100755 → 100644
Empty file.
Empty file modified src/mon/Monitor.cc 100755 → 100644
Empty file.
Empty file modified src/os/kstore/KStore.cc 100755 → 100644
Empty file.
Empty file modified src/osd/PG.cc 100755 → 100644
Empty file.
Empty file modified src/osd/PG.h 100755 → 100644
Empty file.
Empty file modified src/pybind/ceph_daemon.py 100755 → 100644
Empty file.
Empty file modified src/pybind/ceph_rest_api.py 100755 → 100644
Empty file.
Empty file modified src/test/librados/tier.cc 100755 → 100644
Empty file.

0 comments on commit d40250d

Please sign in to comment.