All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4: mark objects for local use as static
@ 2011-02-15 19:43 Lukas Czerner
  2011-02-23 17:24 ` Ted Ts'o
  0 siblings, 1 reply; 2+ messages in thread
From: Lukas Czerner @ 2011-02-15 19:43 UTC (permalink / raw)
  To: linux-ext4; +Cc: tytso, lczerner

Certain object in ext4 code are supposed to be used only locally, but
are not defined as static. Fix it by adding static into definition.

Signed-off-by: Lukas Czerner <lczerner@redhat.com>
---
 fs/ext4/mballoc.c |    3 ++-
 fs/ext4/super.c   |    6 +++---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
index d1fe09a..ae4d7f5 100644
--- a/fs/ext4/mballoc.c
+++ b/fs/ext4/mballoc.c
@@ -4753,7 +4753,8 @@ static int ext4_trim_extent(struct super_block *sb, int start, int count,
  * bitmap. Then issue a TRIM command on this extent and free the extent in
  * the group buddy bitmap. This is done until whole group is scanned.
  */
-ext4_grpblk_t ext4_trim_all_free(struct super_block *sb, struct ext4_buddy *e4b,
+static ext4_grpblk_t
+ext4_trim_all_free(struct super_block *sb, struct ext4_buddy *e4b,
 		ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks)
 {
 	void *bitmap;
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index f6a318f..5fe6d1b 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -54,9 +54,9 @@
 
 static struct proc_dir_entry *ext4_proc_root;
 static struct kset *ext4_kset;
-struct ext4_lazy_init *ext4_li_info;
-struct mutex ext4_li_mtx;
-struct ext4_features *ext4_feat;
+static struct ext4_lazy_init *ext4_li_info;
+static struct mutex ext4_li_mtx;
+static struct ext4_features *ext4_feat;
 
 static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
 			     unsigned long journal_devnum);
-- 
1.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ext4: mark objects for local use as static
  2011-02-15 19:43 [PATCH] ext4: mark objects for local use as static Lukas Czerner
@ 2011-02-23 17:24 ` Ted Ts'o
  0 siblings, 0 replies; 2+ messages in thread
From: Ted Ts'o @ 2011-02-23 17:24 UTC (permalink / raw)
  To: Lukas Czerner; +Cc: linux-ext4

On Tue, Feb 15, 2011 at 08:43:18PM +0100, Lukas Czerner wrote:
> Certain object in ext4 code are supposed to be used only locally, but
> are not defined as static. Fix it by adding static into definition.
> 
> Signed-off-by: Lukas Czerner <lczerner@redhat.com>

Thanks, added to the ext4 patch queue with the one-line summary:

ext4: mark file-local functions and variables as static

      	   	      		    	      - Ted


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-02-23 17:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-15 19:43 [PATCH] ext4: mark objects for local use as static Lukas Czerner
2011-02-23 17:24 ` Ted Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.