public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: Jakub Kicinski <kuba@kernel•org>
To: Jakob Koschel <jakobkoschel@gmail•com>
Cc: "David S. Miller" <davem@davemloft•net>,
	Paolo Abeni <pabeni@redhat•com>, Andrew Lunn <andrew@lunn•ch>,
	Vivien Didelot <vivien.didelot@gmail•com>,
	Florian Fainelli <f.fainelli@gmail•com>,
	Vladimir Oltean <olteanv@gmail•com>,
	Lars Povlsen <lars.povlsen@microchip•com>,
	Steen Hegelund <Steen.Hegelund@microchip•com>,
	UNGLinuxDriver@microchip•com, Ariel Elior <aelior@marvell•com>,
	Manish Chopra <manishc@marvell•com>,
	Edward Cree <ecree.xilinx@gmail•com>,
	Martin Habets <habetsm.xilinx@gmail•com>,
	Michael Ellerman <mpe@ellerman•id.au>,
	Benjamin Herrenschmidt <benh@kernel•crashing.org>,
	Paul Mackerras <paulus@samba•org>, Jiri Pirko <jiri@resnulli•us>,
	Alexei Starovoitov <ast@kernel•org>,
	Daniel Borkmann <daniel@iogearbox•net>,
	Andrii Nakryiko <andrii@kernel•org>,
	Martin KaFai Lau <kafai@fb•com>, Song Liu <songliubraving@fb•com>,
	Yonghong Song <yhs@fb•com>,
	John Fastabend <john.fastabend@gmail•com>,
	KP Singh <kpsingh@kernel•org>,
	Casper Andersson <casper.casan@gmail•com>,
	Bjarni Jonasson <bjarni.jonasson@microchip•com>,
	Christophe JAILLET <christophe.jaillet@wanadoo•fr>,
	Michael Walle <michael@walle•cc>, Jason Gunthorpe <jgg@ziepe•ca>,
	Colin Ian King <colin.king@intel•com>,
	Arnd Bergmann <arnd@arndb•de>, Eric Dumazet <edumazet@google•com>,
	Di Zhu <zhudi21@huawei•com>, Xu Wang <vulab@iscas•ac.cn>,
	netdev@vger•kernel.org, linux-kernel@vger•kernel.org,
	linux-arm-kernel@lists•infradead.org,
	linuxppc-dev@lists•ozlabs.org, bpf@vger•kernel.org,
	Mike Rapoport <rppt@kernel•org>,
	"Brian Johannesmeyer" <bjohannesmeyer@gmail•com>,
	Cristiano Giuffrida <c.giuffrida@vu•nl>,
	"Bos, H.J." <h.j.bos@vu•nl>
Subject: Re: [PATCH net-next v3 14/18] sfc: Remove usage of list iterator for list_add() after the loop body
Date: Tue, 12 Apr 2022 14:29:05 -0700	[thread overview]
Message-ID: <20220412142905.54489567@kernel.org> (raw)
In-Reply-To: <20220412121557.3553555-15-jakobkoschel@gmail.com>

On Tue, 12 Apr 2022 14:15:53 +0200 Jakob Koschel wrote:
> -	struct list_head *head = &efx->rss_context.list;
> +	struct list_head *head = *pos = &efx->rss_context.list;

ENOTBUILT, please wait with the reposting. Since you posted two
versions today I guess that's 2x 24h? :)

  reply	other threads:[~2022-04-12 23:24 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-12 12:15 [PATCH net-next v3 00/18] Remove use of list iterator after loop body Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 01/18] connector: Replace usage of found with dedicated list iterator variable Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 02/18] net: dsa: sja1105: remove use of iterator after list_for_each_entry() loop Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 03/18] net: dsa: sja1105: reorder sja1105_first_entry_longer_than with memory allocation Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 04/18] net: dsa: sja1105: use list_add_tail(pos) instead of list_add(pos->prev) Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 05/18] net: dsa: mv88e6xxx: remove redundant check in mv88e6xxx_port_vlan() Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 06/18] net: dsa: mv88e6xxx: refactor mv88e6xxx_port_vlan() Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 07/18] net: dsa: Replace usage of found with dedicated list iterator variable Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 08/18] net: sparx5: " Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 09/18] qed: Use " Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 10/18] qed: Replace usage of found with " Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 11/18] qed: Remove usage of list iterator variable after the loop Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 12/18] net: qede: Replace usage of found with dedicated list iterator variable Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 13/18] net: qede: Remove check of list iterator against head past the loop body Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 14/18] sfc: Remove usage of list iterator for list_add() after " Jakob Koschel
2022-04-12 21:29   ` Jakub Kicinski [this message]
2022-04-13  8:18     ` Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 15/18] net: netcp: Remove usage of list iterator for list_add() after " Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 16/18] ps3_gelic: Replace usage of found with dedicated list iterator variable Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 17/18] ipvlan: Remove usage of list iterator variable for the loop body Jakob Koschel
2022-04-12 12:15 ` [PATCH net-next v3 18/18] team: Remove use of list iterator variable for list_for_each_entry_from() Jakob Koschel

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=20220412142905.54489567@kernel.org \
    --to=kuba@kernel$(echo .)org \
    --cc=Steen.Hegelund@microchip$(echo .)com \
    --cc=UNGLinuxDriver@microchip$(echo .)com \
    --cc=aelior@marvell$(echo .)com \
    --cc=andrew@lunn$(echo .)ch \
    --cc=andrii@kernel$(echo .)org \
    --cc=arnd@arndb$(echo .)de \
    --cc=ast@kernel$(echo .)org \
    --cc=benh@kernel$(echo .)crashing.org \
    --cc=bjarni.jonasson@microchip$(echo .)com \
    --cc=bjohannesmeyer@gmail$(echo .)com \
    --cc=bpf@vger$(echo .)kernel.org \
    --cc=c.giuffrida@vu$(echo .)nl \
    --cc=casper.casan@gmail$(echo .)com \
    --cc=christophe.jaillet@wanadoo$(echo .)fr \
    --cc=colin.king@intel$(echo .)com \
    --cc=daniel@iogearbox$(echo .)net \
    --cc=davem@davemloft$(echo .)net \
    --cc=ecree.xilinx@gmail$(echo .)com \
    --cc=edumazet@google$(echo .)com \
    --cc=f.fainelli@gmail$(echo .)com \
    --cc=h.j.bos@vu$(echo .)nl \
    --cc=habetsm.xilinx@gmail$(echo .)com \
    --cc=jakobkoschel@gmail$(echo .)com \
    --cc=jgg@ziepe$(echo .)ca \
    --cc=jiri@resnulli$(echo .)us \
    --cc=john.fastabend@gmail$(echo .)com \
    --cc=kafai@fb$(echo .)com \
    --cc=kpsingh@kernel$(echo .)org \
    --cc=lars.povlsen@microchip$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linuxppc-dev@lists$(echo .)ozlabs.org \
    --cc=manishc@marvell$(echo .)com \
    --cc=michael@walle$(echo .)cc \
    --cc=mpe@ellerman$(echo .)id.au \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=olteanv@gmail$(echo .)com \
    --cc=pabeni@redhat$(echo .)com \
    --cc=paulus@samba$(echo .)org \
    --cc=rppt@kernel$(echo .)org \
    --cc=songliubraving@fb$(echo .)com \
    --cc=vivien.didelot@gmail$(echo .)com \
    --cc=vulab@iscas$(echo .)ac.cn \
    --cc=yhs@fb$(echo .)com \
    --cc=zhudi21@huawei$(echo .)com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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