提交 f0fd27d4 编写于 作者: S Stephen Hemminger 提交者: David S. Miller

[NET]: sock_register interface changes

The sock_register() doesn't change the family, so the protocols can
define it read-only.  No caller ever checks return value from
sock_unregister()
Signed-off-by: NStephen Hemminger <shemminger@osdl.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 55737fda
...@@ -176,8 +176,8 @@ struct iovec; ...@@ -176,8 +176,8 @@ struct iovec;
struct kvec; struct kvec;
extern int sock_wake_async(struct socket *sk, int how, int band); extern int sock_wake_async(struct socket *sk, int how, int band);
extern int sock_register(struct net_proto_family *fam); extern int sock_register(const struct net_proto_family *fam);
extern int sock_unregister(int family); extern void sock_unregister(int family);
extern int sock_create(int family, int type, int proto, extern int sock_create(int family, int type, int proto,
struct socket **res); struct socket **res);
extern int sock_create_kern(int family, int type, int proto, extern int sock_create_kern(int family, int type, int proto,
......
...@@ -147,7 +147,7 @@ static struct file_operations socket_file_ops = { ...@@ -147,7 +147,7 @@ static struct file_operations socket_file_ops = {
*/ */
static DEFINE_SPINLOCK(net_family_lock); static DEFINE_SPINLOCK(net_family_lock);
static const struct net_proto_family *net_families[NPROTO]; static const struct net_proto_family *net_families[NPROTO] __read_mostly;
/* /*
* Statistics counters of the socket lists * Statistics counters of the socket lists
...@@ -2080,7 +2080,7 @@ asmlinkage long sys_socketcall(int call, unsigned long __user *args) ...@@ -2080,7 +2080,7 @@ asmlinkage long sys_socketcall(int call, unsigned long __user *args)
* socket interface. The value ops->family coresponds to the * socket interface. The value ops->family coresponds to the
* socket system call protocol family. * socket system call protocol family.
*/ */
int sock_register(struct net_proto_family *ops) int sock_register(const struct net_proto_family *ops)
{ {
int err; int err;
...@@ -2116,10 +2116,9 @@ int sock_register(struct net_proto_family *ops) ...@@ -2116,10 +2116,9 @@ int sock_register(struct net_proto_family *ops)
* a module then it needs to provide its own protection in * a module then it needs to provide its own protection in
* the ops->create routine. * the ops->create routine.
*/ */
int sock_unregister(int family) void sock_unregister(int family)
{ {
if (family < 0 || family >= NPROTO) BUG_ON(family < 0 || family >= NPROTO);
return -EINVAL;
spin_lock(&net_family_lock); spin_lock(&net_family_lock);
net_families[family] = NULL; net_families[family] = NULL;
...@@ -2128,7 +2127,6 @@ int sock_unregister(int family) ...@@ -2128,7 +2127,6 @@ int sock_unregister(int family)
synchronize_rcu(); synchronize_rcu();
printk(KERN_INFO "NET: Unregistered protocol family %d\n", family); printk(KERN_INFO "NET: Unregistered protocol family %d\n", family);
return 0;
} }
static int __init sock_init(void) static int __init sock_init(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册