From: Scott Feldman <sfeldma@gmail.com>
To: Simon Horman <horms@verge.net.au>
Cc: "Simon Horman" <simon.horman@netronome.com>,
"David Miller" <davem@davemloft.net>,
Netdev <netdev@vger.kernel.org>, "Jiří Pírko" <jiri@resnulli.us>,
"Toshiaki Makita" <makita.toshiaki@lab.ntt.co.jp>
Subject: Re: [PATCH net-next v2] rocker: move netevent neigh update to processes context
Date: Thu, 4 Jun 2015 18:33:10 -0700 [thread overview]
Message-ID: <CAE4R7bBfHeK8U_8-QWoVoaVAGT6ObemaKdGOon_nyO8gooyU4A@mail.gmail.com> (raw)
In-Reply-To: <20150604225425.GA7465@verge.net.au>
On Thu, Jun 4, 2015 at 3:54 PM, Simon Horman <horms@verge.net.au> wrote:
> Hi Scott,
>
>> Simon, just focusing on this rocker->neigh_tbl_next_index++ issue at
>> the moment, I think the change below would make _rocker_neigh_add()
>> safe to call without needing to put neigh_update into process context.
>> It works because entry is stored between PREPARE and COMMIT, so once
>> entry->index is assigned in PREPARE (under neigh_tbl_lock), it'll be
>> re-used in COMMIT, even if the NONE thread also claims it's
>> entry->index (also under neigh_tbl_lock).
>>
>> I know there are other issues you and Toshiaki Makita have pointed
>> out, but let's see if we can peel the onion one layer at a time.
>>
>> --- a/drivers/net/ethernet/rocker/rocker.c
>> +++ b/drivers/net/ethernet/rocker/rocker.c
>> @@ -2904,10 +2904,10 @@ static void _rocker_neigh_add(struct rocker *rocker,
>> enum switchdev_trans trans,
>> struct rocker_neigh_tbl_entry *entry)
>> {
>> - entry->index = rocker->neigh_tbl_next_index;
>> + if (trans != SWITCHDEV_TRANS_COMMIT)
>> + entry->index = rocker->neigh_tbl_next_index++;
>> if (trans == SWITCHDEV_TRANS_PREPARE)
>> return;
>> - rocker->neigh_tbl_next_index++;
>> entry->ref_count++;
>> hash_add(rocker->neigh_tbl, &entry->entry,
>> be32_to_cpu(entry->ip_addr));
>
> I agree that should work.
I've been running it today with no problems. So I'm preparing a new
patch that changes direction here, to address David's concern about
switching neigh event context. Details:
1) Above little patch addresses the race issue with neigh_tbl_next_index
2) Keep neigh update event in event context and bring back a couple of
items I removed in the Spring Cleanup series:
a) use ROCKER_OP_FLAG_NOWAIT to mark contexts that can't sleep
b) if nowait, mem allocations use GFP_ATOMIC
c) if nowait, cmd to device is issued, but we will not sleep to
wait for response from device; just hit-and-run
I was probably too aggressive with Spring Cleanup thinking we could
swing all device accesses to process context.
Thanks to all for the testing/review/feedback/patience.
prev parent reply other threads:[~2015-06-05 1:33 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-03 3:43 [PATCH net-next v2] rocker: move netevent neigh update to processes context sfeldma
2015-06-04 6:38 ` David Miller
2015-06-04 8:20 ` Simon Horman
2015-06-04 8:34 ` David Miller
2015-06-04 9:07 ` Simon Horman
2015-06-04 15:34 ` Toshiaki Makita
2015-06-04 18:48 ` David Miller
2015-06-04 16:12 ` Scott Feldman
2015-06-04 22:54 ` Simon Horman
2015-06-05 1:33 ` Scott Feldman [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=CAE4R7bBfHeK8U_8-QWoVoaVAGT6ObemaKdGOon_nyO8gooyU4A@mail.gmail.com \
--to=sfeldma@gmail.com \
--cc=davem@davemloft.net \
--cc=horms@verge.net.au \
--cc=jiri@resnulli.us \
--cc=makita.toshiaki@lab.ntt.co.jp \
--cc=netdev@vger.kernel.org \
--cc=simon.horman@netronome.com \
/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).