aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEliezer Tamir <eliezer.tamir@linux.intel.com>2013-07-03 06:41:24 +0300
committerDavid S. Miller <davem@davemloft.net>2013-07-02 23:50:47 -0700
commit419076f59fc5916bd200b45225c83437b37ab189 (patch)
tree49e292aa93e0d8518f359640eaba1a437ce804f2 /include
parentip_tunnels: Use skb-len to PMTU check. (diff)
downloadlinux-dev-419076f59fc5916bd200b45225c83437b37ab189.tar.xz
linux-dev-419076f59fc5916bd200b45225c83437b37ab189.zip
net: lls fix build with allnoconfig
correct placeholder declarations to prevent build breakage when !CONFIG_NET_LL_RX_POLL Signed-off-by: Eliezer Tamir <eliezer.tamir@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/ll_poll.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/ll_poll.h b/include/net/ll_poll.h
index b76f004f18a9..0d620ba19bc5 100644
--- a/include/net/ll_poll.h
+++ b/include/net/ll_poll.h
@@ -163,12 +163,12 @@ static inline unsigned long ll_get_flag(void)
return 0;
}
-static inline u64 sk_ll_end_time(struct sock *sk)
+static inline u64 ll_start_time(unsigned int flag)
{
return 0;
}
-static inline u64 ll_end_time(void)
+static inline u64 ll_run_time(void)
{
return 0;
}
@@ -191,7 +191,7 @@ static inline void sk_mark_ll(struct sock *sk, struct sk_buff *skb)
{
}
-static inline bool can_poll_ll(u64 end_time)
+static inline bool can_poll_ll(u64 start_time, u64 run_time)
{
return false;
}