[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20101019151048.ae79bb25.randy.dunlap@oracle.com>
Date: Tue, 19 Oct 2010 15:10:48 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: Stefani Seibold <stefani@...bold.net>
Subject: kfifo must_check warning
In 2.6.36-rc8, I see this build warning:
drivers/char/n_gsm.c: In function 'gsm_dlci_alloc':
drivers/char/n_gsm.c:1580: warning: ignoring return value of '__kfifo_must_check_helper', declared with attribute warn_unused_result
The helper seems to be getting in the way (?). The driver code does this:
if (kfifo_alloc(&dlci->_fifo, 4096, GFP_KERNEL) < 0) {
kfree(dlci);
return NULL;
}
Should the driver code be doing something else?
or should the kfifo_alloc() macro be checking the result of the helper?
thanks,
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists