public inbox for netdev@vger.kernel.org 
 help / color / mirror / Atom feed
From: Christian Marangi <ansuelsmth@gmail•com>
To: Marc Kleine-Budde <mkl@pengutronix•de>
Cc: "Jason Gunthorpe" <jgg@ziepe•ca>,
	"Leon Romanovsky" <leon@kernel•org>,
	"Wolfgang Grandegger" <wg@grandegger•com>,
	"David S. Miller" <davem@davemloft•net>,
	"Eric Dumazet" <edumazet@google•com>,
	"Jakub Kicinski" <kuba@kernel•org>,
	"Paolo Abeni" <pabeni@redhat•com>,
	"Chris Snook" <chris.snook@gmail•com>,
	"Raju Rangoju" <rajur@chelsio•com>,
	"Jeroen de Borst" <jeroendb@google•com>,
	"Praveen Kaligineedi" <pkaligineedi@google•com>,
	"Shailend Chand" <shailend@google•com>,
	"Douglas Miller" <dougmill@linux•ibm.com>,
	"Nick Child" <nnac123@linux•ibm.com>,
	"Michael Ellerman" <mpe@ellerman•id.au>,
	"Nicholas Piggin" <npiggin@gmail•com>,
	"Christophe Leroy" <christophe.leroy@csgroup•eu>,
	"Haren Myneni" <haren@linux•ibm.com>,
	"Rick Lindsley" <ricklind@linux•ibm.com>,
	"Dany Madden" <danymadden@us•ibm.com>,
	"Thomas Falcon" <tlfalcon@linux•ibm.com>,
	"Tariq Toukan" <tariqt@nvidia•com>,
	"Alexandre Torgue" <alexandre.torgue@foss•st.com>,
	"Jose Abreu" <joabreu@synopsys•com>,
	"Maxime Coquelin" <mcoquelin.stm32@gmail•com>,
	"Krzysztof Halasa" <khalasa@piap•pl>,
	"Kalle Valo" <kvalo@kernel•org>,
	"Jeff Johnson" <quic_jjohnson@quicinc•com>,
	"Gregory Greenman" <gregory.greenman@intel•com>,
	"Chandrashekar Devegowda" <chandrashekar.devegowda@intel•com>,
	"Intel Corporation" <linuxwwan@intel•com>,
	"Chiranjeevi Rapolu" <chiranjeevi.rapolu@linux•intel.com>,
	"Liu Haijun" <haijun.liu@mediatek•com>,
	"M Chetan Kumar" <m.chetan.kumar@linux•intel.com>,
	"Ricardo Martinez" <ricardo.martinez@linux•intel.com>,
	"Loic Poulain" <loic.poulain@linaro•org>,
	"Sergey Ryazanov" <ryazanov.s.a@gmail•com>,
	"Johannes Berg" <johannes@sipsolutions•net>,
	"Yuanjun Gong" <ruc_gongyuanjun@163•com>,
	"Wei Fang" <wei.fang@nxp•com>, "Alex Elder" <elder@linaro•org>,
	"Simon Horman" <horms@kernel•org>,
	"Rob Herring" <robh@kernel•org>,
	"Bailey Forrest" <bcf@google•com>,
	"Gustavo A. R. Silva" <gustavoars@kernel•org>,
	"Junfeng Guo" <junfeng.guo@intel•com>,
	"Ziwei Xiao" <ziweixiao@google•com>,
	"Thomas Gleixner" <tglx@linutronix•de>,
	"Rushil Gupta" <rushilg@google•com>,
	"Uwe Kleine-König" <u.kleine-koenig@pengutronix•de>,
	"Yuri Karpov" <YKarpov@ispras•ru>,
	"Zhengchao Shao" <shaozhengchao@huawei•com>,
	"Andrew Lunn" <andrew@lunn•ch>,
	"Zheng Zengkai" <zhengzengkai@huawei•com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel•com>,
	"Lee Jones" <lee@kernel•org>, "Dawei Li" <set_pte_at@outlook•com>,
	"Hans de Goede" <hdegoede@redhat•com>,
	"Benjamin Berg" <benjamin.berg@intel•com>,
	Anjaneyulu <pagadala.yesu.anjaneyulu@intel•com>,
	linux-rdma@vger•kernel.org, linux-kernel@vger•kernel.org,
	linux-can@vger•kernel.org, netdev@vger•kernel.org,
	linuxppc-dev@lists•ozlabs.org,
	linux-stm32@st-md-mailman•stormreply.com,
	linux-arm-kernel@lists•infradead.org, ath10k@lists•infradead.org,
	linux-wireless@vger•kernel.org
Subject: Re: [net-next PATCH 3/4] netdev: replace napi_reschedule with napi_schedule
Date: Tue, 3 Oct 2023 13:18:33 +0200	[thread overview]
Message-ID: <651bf88c.050a0220.3a982.31fc@mx.google.com> (raw)
In-Reply-To: <20231003-living-seltzer-172ea6aec629-mkl@pengutronix.de>

On Tue, Oct 03, 2023 at 09:16:33AM +0200, Marc Kleine-Budde wrote:
> On 02.10.2023 17:10:22, Christian Marangi wrote:
> > Now that napi_schedule return a bool, we can drop napi_reschedule that
> > does the same exact function. The function comes from a very old commit
> > bfe13f54f502 ("ibm_emac: Convert to use napi_struct independent of struct
> > net_device") and the purpose is actually deprecated in favour of
> > different logic.
> > 
> > Convert every user of napi_reschedule to napi_schedule.
> > 
> > Signed-off-by: Christian Marangi <ansuelsmth@gmail•com>
> > ---
> >  drivers/infiniband/ulp/ipoib/ipoib_ib.c                |  4 ++--
> >  drivers/net/can/dev/rx-offload.c                       |  2 +-
> 
> Acked-by: Marc Kleine-Budde # for can/dev/rx-offload.c

Just to make sure can I use the correct tag: (you didn't include the
mail)

Acked-by: Marc Kleine-Budde <mkl@pengutronix•de> # for can/dev/rx-offload.c

?

-- 
	Ansuel

  reply	other threads:[~2023-10-03 11:18 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-02 15:10 [net-next PATCH 1/4] netdev: replace simple napi_schedule_prep/__napi_schedule to napi_schedule Christian Marangi
2023-10-02 15:10 ` [net-next PATCH 2/4] netdev: make napi_schedule return bool on NAPI successful schedule Christian Marangi
2023-10-02 16:08   ` Jeff Johnson
2023-10-03  5:21   ` Eric Dumazet
2023-10-03 10:25     ` Christian Marangi
2023-10-02 15:10 ` [net-next PATCH 3/4] netdev: replace napi_reschedule with napi_schedule Christian Marangi
2023-10-02 16:12   ` Jeff Johnson
2023-10-02 21:41   ` Nick Child
2023-10-03  7:16   ` Marc Kleine-Budde
2023-10-03 11:18     ` Christian Marangi [this message]
2023-10-03 11:26       ` Marc Kleine-Budde
2023-10-02 15:10 ` [net-next PATCH 4/4] netdev: use napi_schedule bool instead of napi_schedule_prep/__napi_schedule Christian Marangi
2023-10-02 22:21 ` [net-next PATCH 1/4] netdev: replace simple napi_schedule_prep/__napi_schedule to napi_schedule Jakub Kicinski

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=651bf88c.050a0220.3a982.31fc@mx.google.com \
    --to=ansuelsmth@gmail$(echo .)com \
    --cc=YKarpov@ispras$(echo .)ru \
    --cc=alexandre.torgue@foss$(echo .)st.com \
    --cc=andrew@lunn$(echo .)ch \
    --cc=ath10k@lists$(echo .)infradead.org \
    --cc=bcf@google$(echo .)com \
    --cc=benjamin.berg@intel$(echo .)com \
    --cc=chandrashekar.devegowda@intel$(echo .)com \
    --cc=chiranjeevi.rapolu@linux$(echo .)intel.com \
    --cc=chris.snook@gmail$(echo .)com \
    --cc=christophe.leroy@csgroup$(echo .)eu \
    --cc=danymadden@us$(echo .)ibm.com \
    --cc=davem@davemloft$(echo .)net \
    --cc=dougmill@linux$(echo .)ibm.com \
    --cc=edumazet@google$(echo .)com \
    --cc=elder@linaro$(echo .)org \
    --cc=gregory.greenman@intel$(echo .)com \
    --cc=gustavoars@kernel$(echo .)org \
    --cc=haijun.liu@mediatek$(echo .)com \
    --cc=haren@linux$(echo .)ibm.com \
    --cc=hdegoede@redhat$(echo .)com \
    --cc=horms@kernel$(echo .)org \
    --cc=jeroendb@google$(echo .)com \
    --cc=jgg@ziepe$(echo .)ca \
    --cc=joabreu@synopsys$(echo .)com \
    --cc=johannes@sipsolutions$(echo .)net \
    --cc=junfeng.guo@intel$(echo .)com \
    --cc=khalasa@piap$(echo .)pl \
    --cc=kuba@kernel$(echo .)org \
    --cc=kvalo@kernel$(echo .)org \
    --cc=lee@kernel$(echo .)org \
    --cc=leon@kernel$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    --cc=linux-can@vger$(echo .)kernel.org \
    --cc=linux-kernel@vger$(echo .)kernel.org \
    --cc=linux-rdma@vger$(echo .)kernel.org \
    --cc=linux-stm32@st-md-mailman$(echo .)stormreply.com \
    --cc=linux-wireless@vger$(echo .)kernel.org \
    --cc=linuxppc-dev@lists$(echo .)ozlabs.org \
    --cc=linuxwwan@intel$(echo .)com \
    --cc=loic.poulain@linaro$(echo .)org \
    --cc=m.chetan.kumar@linux$(echo .)intel.com \
    --cc=mcoquelin.stm32@gmail$(echo .)com \
    --cc=mkl@pengutronix$(echo .)de \
    --cc=mpe@ellerman$(echo .)id.au \
    --cc=netdev@vger$(echo .)kernel.org \
    --cc=nnac123@linux$(echo .)ibm.com \
    --cc=npiggin@gmail$(echo .)com \
    --cc=pabeni@redhat$(echo .)com \
    --cc=pagadala.yesu.anjaneyulu@intel$(echo .)com \
    --cc=pkaligineedi@google$(echo .)com \
    --cc=quic_jjohnson@quicinc$(echo .)com \
    --cc=rafael.j.wysocki@intel$(echo .)com \
    --cc=rajur@chelsio$(echo .)com \
    --cc=ricardo.martinez@linux$(echo .)intel.com \
    --cc=ricklind@linux$(echo .)ibm.com \
    --cc=robh@kernel$(echo .)org \
    --cc=ruc_gongyuanjun@163$(echo .)com \
    --cc=rushilg@google$(echo .)com \
    --cc=ryazanov.s.a@gmail$(echo .)com \
    --cc=set_pte_at@outlook$(echo .)com \
    --cc=shailend@google$(echo .)com \
    --cc=shaozhengchao@huawei$(echo .)com \
    --cc=tariqt@nvidia$(echo .)com \
    --cc=tglx@linutronix$(echo .)de \
    --cc=tlfalcon@linux$(echo .)ibm.com \
    --cc=u.kleine-koenig@pengutronix$(echo .)de \
    --cc=wei.fang@nxp$(echo .)com \
    --cc=wg@grandegger$(echo .)com \
    --cc=zhengzengkai@huawei$(echo .)com \
    --cc=ziweixiao@google$(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