[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <8738il6d0i.fsf@xmission.com>
Date: Thu, 13 Mar 2014 13:48:29 -0700
From: ebiederm@...ssion.com (Eric W. Biederman)
To: Cong Wang <xiyou.wangcong@...il.com>
Cc: Eric Dumazet <eric.dumazet@...il.com>,
David Miller <davem@...emloft.net>,
Linux Kernel Network Developers <netdev@...r.kernel.org>,
Matt Mackall <mpm@...enic.com>,
Satyam Sharma <satyam.sharma@...il.com>
Subject: Re: [RFC PATCH 2/2] netpoll: Don't poll for received packets
Cong Wang <xiyou.wangcong@...il.com> writes:
> On Tue, Mar 11, 2014 at 1:45 AM, Eric W. Biederman
> <ebiederm@...ssion.com> wrote:
>> - work = napi->poll(napi, budget);
>> - trace_napi_poll(napi);
>> + /* Use a budget of 0 to request the drivers not process
>> + * their receive queue. Warn when they do anyway.
>> + */
>> + work = napi->poll(napi, 0);
>> + WARN_ON_ONCE(work != 0);
>>
>
> Adding more printk's in netpoll call path would only bring more
> troubles.
That is why I used WARN_ON_ONCE. So we are alerted to problems but
because it only prints once service won't be denied if nothing except
that warning cares.
Eric
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists