diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-08-13 20:35:39 -0300 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 15:59:43 -0700 |
commit | 725ba8eee3881e619c8e5a0116f1bdb6480ac2d9 (patch) | |
tree | e4d92f0fcbac811ae5954f771794165225b0726f /net/dccp/ccids | |
parent | 531669a0a9041d60d13920973ef8aa4f743c14a0 (diff) | |
download | blackbird-op-linux-725ba8eee3881e619c8e5a0116f1bdb6480ac2d9.tar.gz blackbird-op-linux-725ba8eee3881e619c8e5a0116f1bdb6480ac2d9.zip |
[DCCP]: Introduce the DCCP Kernel hacking menu
Only available if CONFIG_DEBUG_KERNEL is enabled in the "Kernel
Hacking" Menu.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r-- | net/dccp/ccids/ccid3.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index edf9740d8d82..09274f32a337 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c @@ -2078,6 +2078,15 @@ module_init(ccid3_module_init); static __exit void ccid3_module_exit(void) { +#ifdef CONFIG_IP_DCCP_UNLOAD_HACK + /* + * Hack to use while developing, so that we get rid of the control + * sock, that is what keeps a refcount on dccp.ko -acme + */ + extern void dccp_ctl_sock_exit(void); + + dccp_ctl_sock_exit(); +#endif ccid_unregister(&ccid3); if (ccid3_tx_hist != NULL) { |