Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755195Ab3GCDl3 (ORCPT ); Tue, 2 Jul 2013 23:41:29 -0400 Received: from mga01.intel.com ([192.55.52.88]:11930 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753143Ab3GCDl2 (ORCPT ); Tue, 2 Jul 2013 23:41:28 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,985,1363158000"; d="scan'208";a="364505845" From: Eliezer Tamir Subject: [PATCH net-next] net: lls fix build with allnoconfig To: David Miller Cc: linux-kernel@vger.kernel.org, netdev@vger.kernel.org, Willem de Bruijn , Eric Dumazet , Andi Kleen , HPA , Eliezer Tamir Date: Wed, 03 Jul 2013 06:41:24 +0300 Message-ID: <20130703034124.28666.55448.stgit@ladj378.jer.intel.com> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1159 Lines: 43 correct placeholder declarations to prevent build breakage when !CONFIG_NET_LL_RX_POLL Signed-off-by: Eliezer Tamir --- include/net/ll_poll.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/net/ll_poll.h b/include/net/ll_poll.h index b76f004..0d620ba 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; } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/