* [PATCH -next] rapidio: fix -Wunused-const-variable= warning
@ 2023-07-26 10:17 Zhu Wang
2023-07-26 19:36 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Zhu Wang @ 2023-07-26 10:17 UTC (permalink / raw)
To: mporter, alex.bou9, akpm, linux-kernel; +Cc: wangzhu9
When building with W=1, the following warning occurs.
drivers/rapidio/rio_cm.c: In function ‘rio_txcq_handler’:
drivers/rapidio/rio_cm.c:673:7: warning: variable ‘rc’ set but not used [-Wunused-but-set-variable]
int rc;
Since the variable "rc" is not used in function 'rio_txcq_handler',
so we removed it to remove the warning.
Fixes: b6e8d4aa1110 ("rapidio: add RapidIO channelized messaging driver")
Signed-off-by: Zhu Wang <wangzhu9@huawei.com>
---
drivers/rapidio/rio_cm.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/rapidio/rio_cm.c b/drivers/rapidio/rio_cm.c
index 49f8d111e546..652e30c03a00 100644
--- a/drivers/rapidio/rio_cm.c
+++ b/drivers/rapidio/rio_cm.c
@@ -670,13 +670,12 @@ static void rio_txcq_handler(struct cm_dev *cm, int slot)
*/
if (!list_empty(&cm->tx_reqs) && (cm->tx_cnt < RIOCM_TX_RING_SIZE)) {
struct tx_req *req, *_req;
- int rc;
list_for_each_entry_safe(req, _req, &cm->tx_reqs, node) {
list_del(&req->node);
cm->tx_buf[cm->tx_slot] = req->buffer;
- rc = rio_add_outb_message(cm->mport, req->rdev, cmbox,
- req->buffer, req->len);
+ rio_add_outb_message(cm->mport, req->rdev, cmbox,
+ req->buffer, req->len);
kfree(req->buffer);
kfree(req);
--
2.17.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH -next] rapidio: fix -Wunused-const-variable= warning
2023-07-26 10:17 [PATCH -next] rapidio: fix -Wunused-const-variable= warning Zhu Wang
@ 2023-07-26 19:36 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2023-07-26 19:36 UTC (permalink / raw)
To: Zhu Wang; +Cc: mporter, alex.bou9, linux-kernel
On Wed, 26 Jul 2023 18:17:14 +0800 Zhu Wang <wangzhu9@huawei.com> wrote:
> When building with W=1, the following warning occurs.
>
> drivers/rapidio/rio_cm.c: In function ‘rio_txcq_handler’:
> drivers/rapidio/rio_cm.c:673:7: warning: variable ‘rc’ set but not used [-Wunused-but-set-variable]
> int rc;
>
> Since the variable "rc" is not used in function 'rio_txcq_handler',
> so we removed it to remove the warning.
>
> ...
>
> --- a/drivers/rapidio/rio_cm.c
> +++ b/drivers/rapidio/rio_cm.c
> @@ -670,13 +670,12 @@ static void rio_txcq_handler(struct cm_dev *cm, int slot)
> */
> if (!list_empty(&cm->tx_reqs) && (cm->tx_cnt < RIOCM_TX_RING_SIZE)) {
> struct tx_req *req, *_req;
> - int rc;
>
> list_for_each_entry_safe(req, _req, &cm->tx_reqs, node) {
> list_del(&req->node);
> cm->tx_buf[cm->tx_slot] = req->buffer;
> - rc = rio_add_outb_message(cm->mport, req->rdev, cmbox,
> - req->buffer, req->len);
> + rio_add_outb_message(cm->mport, req->rdev, cmbox,
> + req->buffer, req->len);
> kfree(req->buffer);
> kfree(req);
rio_add_outb_message() can fail. It would be better to appropriately
handle these failures, rather than simply ignoring them.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-07-26 19:36 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-26 10:17 [PATCH -next] rapidio: fix -Wunused-const-variable= warning Zhu Wang
2023-07-26 19:36 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®