lkml.org 
[lkml]   [2006]   [May]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[RFC: 2.6 patch] fs/sync.c: make do_sync_file_range() static
This patch makes the needlessly global do_sync_file_range() static.

Signed-off-by: Adrian Bunk <bunk@stusta.de>

---

This patch was already sent on:
- 23 Apr 2006

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@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-05-01 09:14    [W:0.035 / U:0.976 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site