diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ceph_fs.cc | 4 | ||||
-rw-r--r-- | src/include/types.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/include/ceph_fs.cc b/src/include/ceph_fs.cc index 24512bbc483..6e3c143361e 100644 --- a/src/include/ceph_fs.cc +++ b/src/include/ceph_fs.cc @@ -56,10 +56,6 @@ int ceph_flags_to_mode(int flags) mode = CEPH_FILE_MODE_RDWR; break; } -#ifdef O_LAZY - if (flags & O_LAZY) - mode |= CEPH_FILE_MODE_LAZY; -#endif return mode; } diff --git a/src/include/types.h b/src/include/types.h index 55066c97852..bed00175dd4 100644 --- a/src/include/types.h +++ b/src/include/types.h @@ -271,8 +271,6 @@ typedef uint64_t tid_t; // transaction id typedef uint64_t version_t; typedef __u32 epoch_t; // map epoch (32bits -> 13 epochs/second for 10 years) -#define O_LAZY 01000000 - // -------------------------------------- // identify individual mount clients by 64bit value |