* [PATCH] i2c: add sanity check to i2c_put_adapter
@ 2013-08-01 12:10 Sebastian Hesselbarth
[not found] ` <1375359046-17472-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Sebastian Hesselbarth @ 2013-08-01 12:10 UTC (permalink / raw)
To: Sebastian Hesselbarth
Cc: Wolfram Sang, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
i2c_put_adapter dereferences i2c_adapter pointer passed without check
for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter
called with NULL and behave the same way i2c_release_client does already.
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
Cc: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
---
drivers/i2c/i2c-core.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index f32ca29..d075df6 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -1825,7 +1825,8 @@ EXPORT_SYMBOL(i2c_get_adapter);
void i2c_put_adapter(struct i2c_adapter *adap)
{
- module_put(adap->owner);
+ if (adap)
+ module_put(adap->owner);
}
EXPORT_SYMBOL(i2c_put_adapter);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread[parent not found: <1375359046-17472-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] i2c: add sanity check to i2c_put_adapter [not found] ` <1375359046-17472-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2013-08-05 9:00 ` Wolfram Sang 2013-08-05 9:31 ` Sebastian Hesselbarth 2013-08-07 15:05 ` Wolfram Sang 1 sibling, 1 reply; 5+ messages in thread From: Wolfram Sang @ 2013-08-05 9:00 UTC (permalink / raw) To: Sebastian Hesselbarth Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 1210 bytes --] On Thu, Aug 01, 2013 at 02:10:46PM +0200, Sebastian Hesselbarth wrote: > i2c_put_adapter dereferences i2c_adapter pointer passed without check > for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter > called with NULL and behave the same way i2c_release_client does already. What about using WARN for the NULL case to point out the ref-counting imbalance? > > Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > Cc: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org> > Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > --- > drivers/i2c/i2c-core.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c > index f32ca29..d075df6 100644 > --- a/drivers/i2c/i2c-core.c > +++ b/drivers/i2c/i2c-core.c > @@ -1825,7 +1825,8 @@ EXPORT_SYMBOL(i2c_get_adapter); > > void i2c_put_adapter(struct i2c_adapter *adap) > { > - module_put(adap->owner); > + if (adap) > + module_put(adap->owner); > } > EXPORT_SYMBOL(i2c_put_adapter); > > -- > 1.7.10.4 > [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i2c: add sanity check to i2c_put_adapter 2013-08-05 9:00 ` Wolfram Sang @ 2013-08-05 9:31 ` Sebastian Hesselbarth [not found] ` <51FF70FE.1090804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Sebastian Hesselbarth @ 2013-08-05 9:31 UTC (permalink / raw) To: Wolfram Sang Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA On 08/05/13 11:00, Wolfram Sang wrote: > On Thu, Aug 01, 2013 at 02:10:46PM +0200, Sebastian Hesselbarth wrote: >> i2c_put_adapter dereferences i2c_adapter pointer passed without check >> for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter >> called with NULL and behave the same way i2c_release_client does already. > > What about using WARN for the NULL case to point out the ref-counting > imbalance? Wolfram, I was just adding this to (a) make it consistent with i2c_release_client and (b) it allows to simplify drivers where you need to release the adapter during probe failures. But that patch is so small, feel free to squash in anything you like. For a more sophisticated (WARN_ON) approach, I suggest to also put one into i2c_release_client then. Sebastian >> >> Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >> --- >> Cc: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org> >> Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org >> Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org >> --- >> drivers/i2c/i2c-core.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c >> index f32ca29..d075df6 100644 >> --- a/drivers/i2c/i2c-core.c >> +++ b/drivers/i2c/i2c-core.c >> @@ -1825,7 +1825,8 @@ EXPORT_SYMBOL(i2c_get_adapter); >> >> void i2c_put_adapter(struct i2c_adapter *adap) >> { >> - module_put(adap->owner); >> + if (adap) >> + module_put(adap->owner); >> } >> EXPORT_SYMBOL(i2c_put_adapter); >> >> -- >> 1.7.10.4 >> ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <51FF70FE.1090804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] i2c: add sanity check to i2c_put_adapter [not found] ` <51FF70FE.1090804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2013-08-05 10:47 ` Wolfram Sang 0 siblings, 0 replies; 5+ messages in thread From: Wolfram Sang @ 2013-08-05 10:47 UTC (permalink / raw) To: Sebastian Hesselbarth Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 860 bytes --] On Mon, Aug 05, 2013 at 11:31:42AM +0200, Sebastian Hesselbarth wrote: > On 08/05/13 11:00, Wolfram Sang wrote: > >On Thu, Aug 01, 2013 at 02:10:46PM +0200, Sebastian Hesselbarth wrote: > >>i2c_put_adapter dereferences i2c_adapter pointer passed without check > >>for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter > >>called with NULL and behave the same way i2c_release_client does already. > > > >What about using WARN for the NULL case to point out the ref-counting > >imbalance? > > Wolfram, > > I was just adding this to (a) make it consistent with i2c_release_client > and (b) it allows to simplify drivers where you need to release the > adapter during probe failures. But that patch is so small, feel free to > squash in anything you like. I am not forcing you to do this, I am calling for opinions here. [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i2c: add sanity check to i2c_put_adapter [not found] ` <1375359046-17472-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2013-08-05 9:00 ` Wolfram Sang @ 2013-08-07 15:05 ` Wolfram Sang 1 sibling, 0 replies; 5+ messages in thread From: Wolfram Sang @ 2013-08-07 15:05 UTC (permalink / raw) To: Sebastian Hesselbarth Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 604 bytes --] On Thu, Aug 01, 2013 at 02:10:46PM +0200, Sebastian Hesselbarth wrote: > i2c_put_adapter dereferences i2c_adapter pointer passed without check > for NULL. This adds a check for non-NULL pointer to allow i2c_put_adapter > called with NULL and behave the same way i2c_release_client does already. > > Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> Applied to for-next, thanks! Please describe the use case next time in the patch description. The current text describes more what is changed not why. You did that later ("easier probing"). [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-08-07 15:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-01 12:10 [PATCH] i2c: add sanity check to i2c_put_adapter Sebastian Hesselbarth
[not found] ` <1375359046-17472-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-08-05 9:00 ` Wolfram Sang
2013-08-05 9:31 ` Sebastian Hesselbarth
[not found] ` <51FF70FE.1090804-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-08-05 10:47 ` Wolfram Sang
2013-08-07 15:05 ` Wolfram Sang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).