Commit c0e134af authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: lustre: Convert seq_ hash functions to return void

These functions don't need to return anything.
No caller uses the return value.

Miscellanea:

Integrate the individual strings to reduce object size ~100 bytes.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>
Cc: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8faeebdf
...@@ -785,8 +785,8 @@ static inline void __cfs_hash_set_theta(struct cfs_hash *hs, int min, int max) ...@@ -785,8 +785,8 @@ static inline void __cfs_hash_set_theta(struct cfs_hash *hs, int min, int max)
/* Generic debug formatting routines mainly for proc handler */ /* Generic debug formatting routines mainly for proc handler */
struct seq_file; struct seq_file;
int cfs_hash_debug_header(struct seq_file *m); void cfs_hash_debug_header(struct seq_file *m);
int cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m); void cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m);
/* /*
* Generic djb2 hash algorithm for character arrays. * Generic djb2 hash algorithm for character arrays.
......
...@@ -2008,14 +2008,10 @@ void cfs_hash_rehash_key(struct cfs_hash *hs, const void *old_key, ...@@ -2008,14 +2008,10 @@ void cfs_hash_rehash_key(struct cfs_hash *hs, const void *old_key,
} }
EXPORT_SYMBOL(cfs_hash_rehash_key); EXPORT_SYMBOL(cfs_hash_rehash_key);
int cfs_hash_debug_header(struct seq_file *m) void cfs_hash_debug_header(struct seq_file *m)
{ {
seq_printf(m, "%-*s%6s%6s%6s%6s%6s%6s%6s%7s%8s%8s%8s%s\n", seq_printf(m, "%-*s cur min max theta t-min t-max flags rehash count maxdep maxdepb distribution\n",
CFS_HASH_BIGNAME_LEN, CFS_HASH_BIGNAME_LEN, "name");
"name", "cur", "min", "max", "theta", "t-min", "t-max",
"flags", "rehash", "count", "maxdep", "maxdepb",
" distribution");
return 0;
} }
EXPORT_SYMBOL(cfs_hash_debug_header); EXPORT_SYMBOL(cfs_hash_debug_header);
...@@ -2043,7 +2039,7 @@ cfs_hash_full_nbkt(struct cfs_hash *hs) ...@@ -2043,7 +2039,7 @@ cfs_hash_full_nbkt(struct cfs_hash *hs)
CFS_HASH_RH_NBKT(hs) : CFS_HASH_NBKT(hs); CFS_HASH_RH_NBKT(hs) : CFS_HASH_NBKT(hs);
} }
int cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m) void cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m)
{ {
int dist[8] = { 0, }; int dist[8] = { 0, };
int maxdep = -1; int maxdep = -1;
...@@ -2098,7 +2094,5 @@ int cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m) ...@@ -2098,7 +2094,5 @@ int cfs_hash_debug_str(struct cfs_hash *hs, struct seq_file *m)
seq_printf(m, "%d%c", dist[i], (i == 7) ? '\n' : '/'); seq_printf(m, "%d%c", dist[i], (i == 7) ? '\n' : '/');
cfs_hash_unlock(hs, 0); cfs_hash_unlock(hs, 0);
return 0;
} }
EXPORT_SYMBOL(cfs_hash_debug_str); EXPORT_SYMBOL(cfs_hash_debug_str);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment