On 4/6/2019 4:29 PM, Hariprasad Kelam wrote:
changed passing function argument "0 to NULL" to fix below sparse
warning

fs/f2fs/data.c:426:47: warning: Using plain integer as NULL pointer

Signed-off-by: Hariprasad Kelam <[email protected]>
Reviewed-by: Mukesh Ojha <[email protected]>

Cheers,
-Mukesh

---
  fs/f2fs/data.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index 97279441..15a2381 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -423,7 +423,7 @@ static void __submit_merged_write_cond(struct f2fs_sb_info 
*sbi,
void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type)
  {
-       __submit_merged_write_cond(sbi, NULL, 0, 0, type, true);
+       __submit_merged_write_cond(sbi, NULL, NULL, 0, type, true);
  }
void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi,


_______________________________________________
Linux-f2fs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to