diff options
author | Steven Whitehouse | 2006-07-26 16:51:20 +0200 |
---|---|---|
committer | Steven Whitehouse | 2006-07-26 16:51:20 +0200 |
commit | f25ef0c1b4e032b2641857ac4cff3315c6eb90e3 (patch) | |
tree | bb07e8ed49264213cfb5d1694f19f3ece8cad1f0 /fs/gfs2/dir.c | |
parent | [DLM] schedule during long loop through locks (diff) | |
download | kernel-qcow2-linux-f25ef0c1b4e032b2641857ac4cff3315c6eb90e3.tar.gz kernel-qcow2-linux-f25ef0c1b4e032b2641857ac4cff3315c6eb90e3.tar.xz kernel-qcow2-linux-f25ef0c1b4e032b2641857ac4cff3315c6eb90e3.zip |
[GFS2] Tidy gfs2_unstuffer_page
Tidy up gfs2_unstuffer_page by:
a) Moving it into bmap.c
b) Making it static
c) Calling it directly from gfs2_unstuff_dinode
d) Updating all callers of gfs2_unstuff_dinode due to one less
required argument.
It doesn't change the behaviour at all.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/dir.c')
-rw-r--r-- | fs/gfs2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index f62223b9e53d..563b99e419b6 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c @@ -173,7 +173,7 @@ static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf, return -EINVAL; if (gfs2_is_stuffed(ip)) { - error = gfs2_unstuff_dinode(ip, NULL, NULL); + error = gfs2_unstuff_dinode(ip, NULL); if (error) return error; } |