diff options
author | Christoph Hellwig <hch@lst.de> | 2018-05-09 09:54:03 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-05-14 16:55:09 +0200 |
commit | ac613e4566f9df3a8cf8b18e2dcc8af087143868 (patch) | |
tree | 84c5f6a9caaf5a6ae58c378418e092a60495e184 /fs/exofs/super.c | |
parent | memstick: remove unused variables (diff) | |
download | linux-ac613e4566f9df3a8cf8b18e2dcc8af087143868.tar.xz linux-ac613e4566f9df3a8cf8b18e2dcc8af087143868.zip |
scsi/osd: remove the gfp argument to osd_start_request
Always GFP_KERNEL, and keeping it would cause serious complications for
the next change.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/exofs/super.c')
-rw-r--r-- | fs/exofs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exofs/super.c b/fs/exofs/super.c index 179cd5c2f52a..719a3152da80 100644 --- a/fs/exofs/super.c +++ b/fs/exofs/super.c @@ -229,7 +229,7 @@ void exofs_make_credential(u8 cred_a[OSD_CAP_LEN], const struct osd_obj_id *obj) static int exofs_read_kern(struct osd_dev *od, u8 *cred, struct osd_obj_id *obj, u64 offset, void *p, unsigned length) { - struct osd_request *or = osd_start_request(od, GFP_KERNEL); + struct osd_request *or = osd_start_request(od); /* struct osd_sense_info osi = {.key = 0};*/ int ret; |