diff options
author | Alex Elder <elder@inktank.com> | 2013-02-15 12:42:29 -0500 |
---|---|---|
committer | Alex Elder <elder@inktank.com> | 2013-02-18 13:19:22 -0500 |
commit | 87f979d390f9ecfa3d0038a9f9a002a62f8a1895 (patch) | |
tree | a1202bf2d1b29541f31875b9445d446d5cf5bfe9 /include/linux/ceph | |
parent | e7e319a9c51409c7effe34333ea26facf2fab9e1 (diff) |
ceph: kill ceph_osdc_writepages() "nofail" parameter
There is only one caller of ceph_osdc_writepages(), and it always
passes the value true as its "nofail" argument. Get rid of that
argument and replace its use in ceph_osdc_writepages() with the
constant value true.
This and a number of cleanup patches that follow resolve:
http://tracker.ceph.com/issues/4126
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'include/linux/ceph')
-rw-r--r-- | include/linux/ceph/osd_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h index 82bf6338d6c1..afcb255b016a 100644 --- a/include/linux/ceph/osd_client.h +++ b/include/linux/ceph/osd_client.h | |||
@@ -275,7 +275,7 @@ extern int ceph_osdc_writepages(struct ceph_osd_client *osdc, | |||
275 | u32 truncate_seq, u64 truncate_size, | 275 | u32 truncate_seq, u64 truncate_size, |
276 | struct timespec *mtime, | 276 | struct timespec *mtime, |
277 | struct page **pages, int nr_pages, | 277 | struct page **pages, int nr_pages, |
278 | int flags, int do_sync, bool nofail); | 278 | int flags, int do_sync); |
279 | 279 | ||
280 | /* watch/notify events */ | 280 | /* watch/notify events */ |
281 | extern int ceph_osdc_create_event(struct ceph_osd_client *osdc, | 281 | extern int ceph_osdc_create_event(struct ceph_osd_client *osdc, |