projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8695e80
)
dccp: cosmetics of info message
author
Gerrit Renker
<
[email protected]
>
Sun, 3 Jul 2011 15:51:14 +0000
(09:51 -0600)
committer
Gerrit Renker
<
[email protected]
>
Mon, 4 Jul 2011 18:37:13 +0000
(12:37 -0600)
Change the CCID (de)activation message to start with the
protocol name, as 'CCID' is already in there.
Signed-off-by: Gerrit Renker <
[email protected]
>
net/dccp/ccid.c
patch
|
blob
|
history
diff --git
a/net/dccp/ccid.c
b/net/dccp/ccid.c
index 36479ca61e0392572ef46a5a39d14c9091b387b4..48b585a5cba7eed6651d5ac017cd0114d2bf672a 100644
(file)
--- a/
net/dccp/ccid.c
+++ b/
net/dccp/ccid.c
@@
-118,7
+118,7
@@
static int ccid_activate(struct ccid_operations *ccid_ops)
if (ccid_ops->ccid_hc_tx_slab == NULL)
goto out_free_rx_slab;
- pr_info("
CCID
: Activated CCID %d (%s)\n",
+ pr_info("
DCCP
: Activated CCID %d (%s)\n",
ccid_ops->ccid_id, ccid_ops->ccid_name);
err = 0;
out:
@@
-136,7
+136,7
@@
static void ccid_deactivate(struct ccid_operations *ccid_ops)
ccid_kmem_cache_destroy(ccid_ops->ccid_hc_rx_slab);
ccid_ops->ccid_hc_rx_slab = NULL;
- pr_info("
CCID
: Deactivated CCID %d (%s)\n",
+ pr_info("
DCCP
: Deactivated CCID %d (%s)\n",
ccid_ops->ccid_id, ccid_ops->ccid_name);
}