summaryrefslogtreecommitdiffstats
path: root/net/dccp/input.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo2006-03-21 06:58:56 +0100
committerDavid S. Miller2006-03-21 06:58:56 +0100
commitc25a18ba347f091d1ce620ba33e6772b60a528e1 (patch)
tree788c596356e150a26e0a67243ffc68213abdd493 /net/dccp/input.c
parent[DCCP] ipv4: make struct dccp_v4_prot static (diff)
downloadkernel-qcow2-linux-c25a18ba347f091d1ce620ba33e6772b60a528e1.tar.gz
kernel-qcow2-linux-c25a18ba347f091d1ce620ba33e6772b60a528e1.tar.xz
kernel-qcow2-linux-c25a18ba347f091d1ce620ba33e6772b60a528e1.zip
[DCCP]: Uninline some functions
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/input.c')
-rw-r--r--net/dccp/input.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/net/dccp/input.c b/net/dccp/input.c
index eac5178ce515..f53e3fc77262 100644
--- a/net/dccp/input.c
+++ b/net/dccp/input.c
@@ -56,7 +56,7 @@ static void dccp_rcv_closereq(struct sock *sk, struct sk_buff *skb)
dccp_send_close(sk, 0);
}
-static inline void dccp_event_ack_recv(struct sock *sk, struct sk_buff *skb)
+static void dccp_event_ack_recv(struct sock *sk, struct sk_buff *skb)
{
struct dccp_sock *dp = dccp_sk(sk);
@@ -151,9 +151,8 @@ static int dccp_check_seqno(struct sock *sk, struct sk_buff *skb)
return 0;
}
-static inline int __dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
- const struct dccp_hdr *dh,
- const unsigned len)
+static int __dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
+ const struct dccp_hdr *dh, const unsigned len)
{
struct dccp_sock *dp = dccp_sk(sk);