diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-09-27 04:50:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:26:15 -0400 |
commit | 5e7672ec3f059f764fcc5c78216e24bb16c44dba (patch) | |
tree | ea0e36468e19fbc3c9ff79d6378b5d8e7eef8ea3 /arch/um/include/net_kern.h | |
parent | 48af05ed54ddf8dc6eceea4f009e063d7e784b37 (diff) |
[PATCH] uml: const more data
Make lots of structures const in order to make it obvious that they need no
locking.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/include/net_kern.h')
-rw-r--r-- | arch/um/include/net_kern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/include/net_kern.h b/arch/um/include/net_kern.h index f7de6df60dd7..769fba43ee03 100644 --- a/arch/um/include/net_kern.h +++ b/arch/um/include/net_kern.h | |||
@@ -54,8 +54,8 @@ struct transport { | |||
54 | struct list_head list; | 54 | struct list_head list; |
55 | char *name; | 55 | char *name; |
56 | int (*setup)(char *, char **, void *); | 56 | int (*setup)(char *, char **, void *); |
57 | struct net_user_info *user; | 57 | const struct net_user_info *user; |
58 | struct net_kern_info *kern; | 58 | const struct net_kern_info *kern; |
59 | int private_size; | 59 | int private_size; |
60 | int setup_size; | 60 | int setup_size; |
61 | }; | 61 | }; |