diff options
| author | Pavel Emelyanov <xemul@openvz.org> | 2007-09-18 22:46:44 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-09-19 11:24:18 -0700 | 
| commit | 735de2230f09741077a645a913de0a04b10208bf (patch) | |
| tree | b408a671c9c07bec41a9ca8056fa7a6710982f3b /include/linux/user_namespace.h | |
| parent | d8a4821dca693867a7953104c1e3cc830eb9191f (diff) | |
| download | olio-linux-3.10-735de2230f09741077a645a913de0a04b10208bf.tar.xz olio-linux-3.10-735de2230f09741077a645a913de0a04b10208bf.zip  | |
Convert uid hash to hlist
Surprisingly, but (spotted by Alexey Dobriyan) the uid hash still uses
list_heads, thus occupying twice as much place as it could.  Convert it to
hlist_heads.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: Alexey Dobriyan <adobriyan@openvz.org>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/user_namespace.h')
| -rw-r--r-- | include/linux/user_namespace.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/user_namespace.h b/include/linux/user_namespace.h index 1101b0ce878..b5f41d4c2ee 100644 --- a/include/linux/user_namespace.h +++ b/include/linux/user_namespace.h @@ -11,7 +11,7 @@  struct user_namespace {  	struct kref		kref; -	struct list_head	uidhash_table[UIDHASH_SZ]; +	struct hlist_head	uidhash_table[UIDHASH_SZ];  	struct user_struct	*root_user;  };  |