Messages in this thread Patch in this message |  | | Date | Fri, 27 Dec 2019 08:17:49 +0800 | From | kbuild test robot <> | Subject | [RFC PATCH] xfs: try_split_da_extent can be static |
| |
Fixes: 1c6c6a28e3cb ("xfs: fix stale data exposure problem when punch hole, collapse range or zero range across a delalloc extent") Signed-off-by: kbuild test robot <lkp@intel.com> --- xfs_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c index 40773d7e6d235..f0b7e60860470 100644 --- a/fs/xfs/xfs_file.c +++ b/fs/xfs/xfs_file.c @@ -786,7 +786,7 @@ xfs_break_layouts( return error; } -int +static int try_split_da_extent( struct xfs_inode *ip, loff_t offset,
|  |