[RFC: 2.6 patch] fs/sync.c: make do_sync_file_range() static

From: Adrian Bunk
Date: Sun Apr 23 2006 - 17:22:46 EST


This patch makes the needlessly global do_sync_file_range() static.

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx>

---

fs/sync.c | 8 +++++---
include/linux/fs.h | 2 --
2 files changed, 5 insertions(+), 5 deletions(-)

--- linux-2.6.17-rc1-mm3-full/include/linux/fs.h.old 2006-04-23 15:54:22.000000000 +0200
+++ linux-2.6.17-rc1-mm3-full/include/linux/fs.h 2006-04-23 15:54:38.000000000 +0200
@@ -762,8 +762,6 @@
#define SYNC_FILE_RANGE_WAIT_BEFORE 1
#define SYNC_FILE_RANGE_WRITE 2
#define SYNC_FILE_RANGE_WAIT_AFTER 4
-extern int do_sync_file_range(struct file *file, loff_t offset, loff_t endbyte,
- unsigned int flags);

/* fs/locks.c */
extern void locks_init_lock(struct file_lock *);
--- linux-2.6.17-rc1-mm3-full/fs/sync.c.old 2006-04-23 15:53:30.000000000 +0200
+++ linux-2.6.17-rc1-mm3-full/fs/sync.c 2006-04-23 15:54:15.000000000 +0200
@@ -14,6 +14,9 @@
#define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \
SYNC_FILE_RANGE_WAIT_AFTER)

+static int do_sync_file_range(struct file *file, loff_t offset, loff_t endbyte,
+ unsigned int flags);
+
/*
* sys_sync_file_range() permits finely controlled syncing over a segment of
* a file in the range offset .. (offset+nbytes-1) inclusive. If nbytes is
@@ -125,8 +128,8 @@
/*
* `endbyte' is inclusive
*/
-int do_sync_file_range(struct file *file, loff_t offset, loff_t endbyte,
- unsigned int flags)
+static int do_sync_file_range(struct file *file, loff_t offset, loff_t endbyte,
+ unsigned int flags)
{
int ret;
struct address_space *mapping;
@@ -161,4 +164,3 @@
out:
return ret;
}
-EXPORT_SYMBOL_GPL(do_sync_file_range);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/