summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/node.c
diff options
context:
space:
mode:
authorBart Van Assche <bvanassche@acm.org>2022-07-14 11:07:18 -0700
committerJens Axboe <axboe@kernel.dk>2022-07-14 12:14:32 -0600
commit7649c873c16a384d447f7dbf9b153e333159f914 (patch)
tree382cedf2e75e44615bba766ebf9fd34f8076c2f2 /fs/f2fs/node.c
parent67c0f556302cfcdb5b5fb7933afa08cb1de75b36 (diff)
downloadlinux-stable-7649c873c16a384d447f7dbf9b153e333159f914.tar.gz
linux-stable-7649c873c16a384d447f7dbf9b153e333159f914.tar.bz2
linux-stable-7649c873c16a384d447f7dbf9b153e333159f914.zip
fs/f2fs: Use the enum req_op and blk_opf_t types
Improve static type checking by using the enum req_op type for variables that represent a request operation and the new blk_opf_t type for variables that represent request flags. Cc: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20220714180729.1065367-53-bvanassche@acm.org Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/f2fs/node.c')
-rw-r--r--fs/f2fs/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index cf6f7fc83c08..04a145f1dcfc 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -1327,7 +1327,7 @@ fail:
* 0: f2fs_put_page(page, 0)
* LOCKED_PAGE or error: f2fs_put_page(page, 1)
*/
-static int read_node_page(struct page *page, int op_flags)
+static int read_node_page(struct page *page, blk_opf_t op_flags)
{
struct f2fs_sb_info *sbi = F2FS_P_SB(page);
struct node_info ni;