public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Bunk <bunk@stusta.de>
To: linux-kernel@vger.kernel.org
Subject: [RFC: 2.6 patch] fs/sync.c: make do_sync_file_range() static
Date: Sun, 23 Apr 2006 23:22:23 +0200	[thread overview]
Message-ID: <20060423212223.GD13666@stusta.de> (raw)

This patch makes the needlessly global do_sync_file_range() static.

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

---

 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);


             reply	other threads:[~2006-04-23 21:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-23 21:22 Adrian Bunk [this message]
  -- strict thread matches above, loose matches on Subject: below --
2006-05-01  7:11 [RFC: 2.6 patch] fs/sync.c: make do_sync_file_range() static Adrian Bunk
2006-05-01  7:18 ` Neil Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060423212223.GD13666@stusta.de \
    --to=bunk@stusta.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox