aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2007-02-06 17:12:49 -0500
committerSteven Whitehouse <swhiteho@redhat.com>2007-02-07 10:48:48 -0500
commita2cf822274b3d58a16a65c8338e299e18b3dc3a4 (patch)
tree2f24e59d6e7543cddb421a62ec28f744f9dc082e /fs/gfs2
parent2d72e7101cc7fff5c1eb21bfcbba51c8002418d2 (diff)
[GFS2] make gfs2_writepages() static
On Mon, Jan 29, 2007 at 08:45:28PM -0800, Andrew Morton wrote: >... > Changes since 2.6.20-rc6-mm2: >... > git-gfs2-nmw.patch >... > git trees >... This patch makes the needlessly global gfs2_writepages() static. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/ops_address.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c
index 5e9653c4d886..56e33590b656 100644
--- a/fs/gfs2/ops_address.c
+++ b/fs/gfs2/ops_address.c
@@ -170,7 +170,8 @@ out_ignore:
170 * and write whole extents at once. This is a big reduction in the 170 * and write whole extents at once. This is a big reduction in the
171 * number of I/O requests we send and the bmap calls we make in this case. 171 * number of I/O requests we send and the bmap calls we make in this case.
172 */ 172 */
173int gfs2_writepages(struct address_space *mapping, struct writeback_control *wbc) 173static int gfs2_writepages(struct address_space *mapping,
174 struct writeback_control *wbc)
174{ 175{
175 struct inode *inode = mapping->host; 176 struct inode *inode = mapping->host;
176 struct gfs2_inode *ip = GFS2_I(inode); 177 struct gfs2_inode *ip = GFS2_I(inode);