From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2021-08-05 18:38:44
wwan_create_dev() is expected to return either valid pointer or NULL,
In some cases it might return the error pointer. Prevent this by converting
it to NULL after wwan_dev_get_by_parent().
Fixes: 9a44c1cc6388 ("net: Add a WWAN subsystem")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/net/wwan/wwan_core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
On Thu, 5 Aug 2021 at 20:38, Andy Shevchenko
[off-list ref] wrote:
wwan_create_dev() is expected to return either valid pointer or NULL,
In some cases it might return the error pointer. Prevent this by converting
it to NULL after wwan_dev_get_by_parent().
wwan_create_dev is called both from wwan_register_ops() and
wwan_create_port(), one using IS_ERR and the other using NULL testing,
they should be aligned as well.
Regards,
Loic
From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Date: 2021-08-06 09:08:10
On Thu, Aug 05, 2021 at 09:53:57PM +0200, Loic Poulain wrote:
On Thu, 5 Aug 2021 at 20:38, Andy Shevchenko
[off-list ref] wrote:
quoted
wwan_create_dev() is expected to return either valid pointer or NULL,
In some cases it might return the error pointer. Prevent this by converting
it to NULL after wwan_dev_get_by_parent().
wwan_create_dev is called both from wwan_register_ops() and
wwan_create_port(), one using IS_ERR and the other using NULL testing,
they should be aligned as well.
Ah, good catch!
I just sent v2, but eventually I have decided to switch to error pointer since
it seems the most used pattern in the code.
--
With Best Regards,
Andy Shevchenko
Hello Andy,
On Fri, Aug 6, 2021 at 12:08 PM Andy Shevchenko
[off-list ref] wrote:
On Thu, Aug 05, 2021 at 09:53:57PM +0200, Loic Poulain wrote:
quoted
On Thu, 5 Aug 2021 at 20:38, Andy Shevchenko
[off-list ref] wrote:
quoted
wwan_create_dev() is expected to return either valid pointer or NULL,
In some cases it might return the error pointer. Prevent this by converting
it to NULL after wwan_dev_get_by_parent().
wwan_create_dev is called both from wwan_register_ops() and
wwan_create_port(), one using IS_ERR and the other using NULL testing,
they should be aligned as well.
Ah, good catch!
I just sent v2, but eventually I have decided to switch to error pointer since
it seems the most used pattern in the code.
I agree that returning the error pointer is a good solution here.
Thank you for the fix.
--
Sergey