diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2011-12-14 21:43:27 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-16 13:48:27 -0500 |
commit | aec8dc62f66199aef153d86e1f90d9c1d14696e3 (patch) | |
tree | bdf927f62708cfa5b7a0561725ab76da8ac2ceb2 /net/dccp/diag.c | |
parent | e7c466e58eb1ff9bf49c2f3902622dc11a8c7022 (diff) |
sock_diag: Fix module netlink aliases
I've made a mistake when fixing the sock_/inet_diag aliases :(
1. The sock_diag layer should request the family-based alias,
not just the IPPROTO_IP one;
2. The inet_diag layer should request for AF_INET+protocol alias,
not just the protocol one.
Thus fix this.
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/diag.c')
-rw-r--r-- | net/dccp/diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/diag.c b/net/dccp/diag.c index e29214d193d6..8f1625753377 100644 --- a/net/dccp/diag.c +++ b/net/dccp/diag.c | |||
@@ -83,4 +83,4 @@ module_exit(dccp_diag_fini); | |||
83 | MODULE_LICENSE("GPL"); | 83 | MODULE_LICENSE("GPL"); |
84 | MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>"); | 84 | MODULE_AUTHOR("Arnaldo Carvalho de Melo <acme@mandriva.com>"); |
85 | MODULE_DESCRIPTION("DCCP inet_diag handler"); | 85 | MODULE_DESCRIPTION("DCCP inet_diag handler"); |
86 | MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 33); | 86 | MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2-33 /* AF_INET - IPPROTO_DCCP */); |