diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-10-05 04:24:09 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-06 23:12:07 -0700 |
commit | 1f4f0f645cc1d7f1187fcdb0ac22c2e69bd68050 (patch) | |
tree | 6db6ea3a0bb27188d06db6bbf093842d7007f836 /net/dccp/feat.c | |
parent | 10e7e9c44d442275951d1cfc892c1c6606c85c94 (diff) | |
download | op-kernel-dev-1f4f0f645cc1d7f1187fcdb0ac22c2e69bd68050.zip op-kernel-dev-1f4f0f645cc1d7f1187fcdb0ac22c2e69bd68050.tar.gz |
dccp: Kill dead code and add static markers.
Remove dead code and make some functions static.
Compile tested only.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/feat.c')
-rw-r--r-- | net/dccp/feat.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/net/dccp/feat.c b/net/dccp/feat.c index df7dd26..568def9 100644 --- a/net/dccp/feat.c +++ b/net/dccp/feat.c @@ -730,16 +730,6 @@ int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local, 0, list, len); } -/* Analogous to dccp_feat_register_sp(), but for non-negotiable values */ -int dccp_feat_register_nn(struct sock *sk, u8 feat, u64 val) -{ - /* any changes must be registered before establishing the connection */ - if (sk->sk_state != DCCP_CLOSED) - return -EISCONN; - if (dccp_feat_type(feat) != FEAT_NN) - return -EINVAL; - return __feat_register_nn(&dccp_sk(sk)->dccps_featneg, feat, 0, val); -} /* * Tracking features whose value depend on the choice of CCID |