diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-13 06:22:19 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-16 03:31:39 -0400 |
commit | e9ef7b5f25d31c5660fb4a87f4b40ac48070fcb7 (patch) | |
tree | 8ae85360dd0b0eee05bc4f3f22729f1234f998cd /fs/ubifs/gc.c | |
parent | 7a9c3e399389723f01be3dab50991604d2bc0409 (diff) |
UBIFS: make 2 functions static
This is a minor change which makes 2 functions static because they
are not used outside the gc.c file: 'data_nodes_cmp()' and
'nondata_nodes_cmp()'.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/gc.c')
-rw-r--r-- | fs/ubifs/gc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ubifs/gc.c b/fs/ubifs/gc.c index 082d21bd9021..d70937b3f8e9 100644 --- a/fs/ubifs/gc.c +++ b/fs/ubifs/gc.c | |||
@@ -118,7 +118,7 @@ static int switch_gc_head(struct ubifs_info *c) | |||
118 | * This function compares data nodes @a and @b. Returns %1 if @a has greater | 118 | * This function compares data nodes @a and @b. Returns %1 if @a has greater |
119 | * inode or block number, and %-1 otherwise. | 119 | * inode or block number, and %-1 otherwise. |
120 | */ | 120 | */ |
121 | int data_nodes_cmp(void *priv, struct list_head *a, struct list_head *b) | 121 | static int data_nodes_cmp(void *priv, struct list_head *a, struct list_head *b) |
122 | { | 122 | { |
123 | ino_t inuma, inumb; | 123 | ino_t inuma, inumb; |
124 | struct ubifs_info *c = priv; | 124 | struct ubifs_info *c = priv; |
@@ -161,7 +161,8 @@ int data_nodes_cmp(void *priv, struct list_head *a, struct list_head *b) | |||
161 | * first and sorted by length in descending order. Directory entry nodes go | 161 | * first and sorted by length in descending order. Directory entry nodes go |
162 | * after inode nodes and are sorted in ascending hash valuer order. | 162 | * after inode nodes and are sorted in ascending hash valuer order. |
163 | */ | 163 | */ |
164 | int nondata_nodes_cmp(void *priv, struct list_head *a, struct list_head *b) | 164 | static int nondata_nodes_cmp(void *priv, struct list_head *a, |
165 | struct list_head *b) | ||
165 | { | 166 | { |
166 | ino_t inuma, inumb; | 167 | ino_t inuma, inumb; |
167 | struct ubifs_info *c = priv; | 168 | struct ubifs_info *c = priv; |