From: Ben Hutchings <bhutchings@solarflare.com>
To: Erik Hugne <erik.hugne@ericsson.com>
Cc: "netdev@vger.kernel.org" <netdev@vger.kernel.org>
Subject: Re: [Question] Kernel preemption of BH handler
Date: Mon, 26 Mar 2012 15:56:14 +0100 [thread overview]
Message-ID: <1332773774.3500.87.camel@deadeye> (raw)
In-Reply-To: <4F7034EB.8010707@ericsson.com>
On Mon, 2012-03-26 at 11:20 +0200, Erik Hugne wrote:
> I have a BH handler that processes packets received from a netdevice.
>
> my_bh_handler() {
> spin_lock_bh(my_lock);
> /*do stuff*/
> spin_unlock_bh(my_lock);
> /*do more stuff*/
> }
spin_lock_bh() means 'spin lock with contending soft-interrupts' and not
'spin lock from a soft-interrupt'. You probably need to use it in
process context but not here.
> First packet is received, and my_bh_handler() is currently processing it.
> Now a new packet is received by the NIC and my_bh_handler() is preempted
> after my_lock have been released.
You don't explain how this handler is invoked, but normally it would be
scheduled to run a second time and would not preempt the first call.
Ben.
> Is it possible that the second invocation of the BH routine is allowed
> to finish before the first?
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
prev parent reply other threads:[~2012-03-26 14:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-26 9:20 [Question] Kernel preemption of BH handler Erik Hugne
2012-03-26 14:56 ` Ben Hutchings [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1332773774.3500.87.camel@deadeye \
--to=bhutchings@solarflare.com \
--cc=erik.hugne@ericsson.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).