* [PATCH] i2c: Keep client->driver and client->dev.driver in sync
@ 2008-03-08 20:49 Jean Delvare
[not found] ` <20080308214911.5344eba9-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Jean Delvare @ 2008-03-08 20:49 UTC (permalink / raw)
To: Linux I2C, David Brownell
From: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
Ensures that client->driver is set to NULL if the probe() returns an
error (this keeps client->driver and client->dev.driver in sync).
Signed-off-by: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
---
Hans, I've updated your patch a bit to make i2c_device_probe() look
more like i2c_device_remove(); hope you don't mind.
David, this fix looks correct to me, I'll send it to Linus quickly if
you have no objection.
drivers/i2c/i2c-core.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- linux-2.6.25-rc4.orig/drivers/i2c/i2c-core.c 2008-03-08 17:57:52.000000000 +0100
+++ linux-2.6.25-rc4/drivers/i2c/i2c-core.c 2008-03-08 21:43:11.000000000 +0100
@@ -90,12 +90,15 @@ static int i2c_device_probe(struct devic
{
struct i2c_client *client = to_i2c_client(dev);
struct i2c_driver *driver = to_i2c_driver(dev->driver);
+ int status;
if (!driver->probe)
return -ENODEV;
- client->driver = driver;
dev_dbg(dev, "probe\n");
- return driver->probe(client);
+ status = driver->probe(client);
+ if (status == 0)
+ client->driver = driver;
+ return status;
}
static int i2c_device_remove(struct device *dev)
--
Jean Delvare
_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i2c: Keep client->driver and client->dev.driver in sync
[not found] ` <20080308214911.5344eba9-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
@ 2008-03-08 21:12 ` David Brownell
[not found] ` <200803081312.36524.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: David Brownell @ 2008-03-08 21:12 UTC (permalink / raw)
To: Jean Delvare; +Cc: Linux I2C
On Saturday 08 March 2008, Jean Delvare wrote:
> From: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
>
> Ensures that client->driver is set to NULL if the probe() returns an
> error (this keeps client->driver and client->dev.driver in sync).
>
> Signed-off-by: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
> Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
> ---
> Hans, I've updated your patch a bit to make i2c_device_probe() look
> more like i2c_device_remove(); hope you don't mind.
>
> David, this fix looks correct to me, I'll send it to Linus quickly if
> you have no objection.
The only issue I have is that code which the driver probe()
calls may expect client->driver to be set, but it won't be...
While I'd rather see client->driver vanish, in this case I'd
just suggest leaving the early assignment, and nulling it out
on error (instead of assigning it on success).
> drivers/i2c/i2c-core.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> --- linux-2.6.25-rc4.orig/drivers/i2c/i2c-core.c 2008-03-08 17:57:52.000000000 +0100
> +++ linux-2.6.25-rc4/drivers/i2c/i2c-core.c 2008-03-08 21:43:11.000000000 +0100
> @@ -90,12 +90,15 @@ static int i2c_device_probe(struct devic
> {
> struct i2c_client *client = to_i2c_client(dev);
> struct i2c_driver *driver = to_i2c_driver(dev->driver);
> + int status;
>
> if (!driver->probe)
> return -ENODEV;
> - client->driver = driver;
> dev_dbg(dev, "probe\n");
> - return driver->probe(client);
> + status = driver->probe(client);
> + if (status == 0)
> + client->driver = driver;
> + return status;
> }
>
> static int i2c_device_remove(struct device *dev)
>
>
> --
> Jean Delvare
>
_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i2c: Keep client->driver and client->dev.driver in sync
[not found] ` <200803081312.36524.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
@ 2008-03-09 10:16 ` Jean Delvare
[not found] ` <20080309111626.1d531cd4-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Jean Delvare @ 2008-03-09 10:16 UTC (permalink / raw)
To: David Brownell; +Cc: Linux I2C
Hi David,
On Sat, 8 Mar 2008 13:12:36 -0800, David Brownell wrote:
> The only issue I have is that code which the driver probe()
> calls may expect client->driver to be set, but it won't be...
>
> While I'd rather see client->driver vanish, in this case I'd
> just suggest leaving the early assignment, and nulling it out
> on error (instead of assigning it on success).
Oh well, that's exactly what Hans' patch did originally, I changed it
to make the code more simple, but if you think it is better that way,
I'll revert this change of mine. Here you go:
From: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
Ensure that client->driver is set to NULL if the probe() returns an
error (this keeps client->driver and client->dev.driver in sync).
Signed-off-by: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
---
drivers/i2c/i2c-core.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
--- linux-2.6.25-rc4.orig/drivers/i2c/i2c-core.c 2008-03-08 17:57:52.000000000 +0100
+++ linux-2.6.25-rc4/drivers/i2c/i2c-core.c 2008-03-09 11:03:53.000000000 +0100
@@ -90,12 +90,16 @@ static int i2c_device_probe(struct devic
{
struct i2c_client *client = to_i2c_client(dev);
struct i2c_driver *driver = to_i2c_driver(dev->driver);
+ int status;
if (!driver->probe)
return -ENODEV;
client->driver = driver;
dev_dbg(dev, "probe\n");
- return driver->probe(client);
+ status = driver->probe(client);
+ if (status)
+ client->driver = NULL;
+ return status;
}
static int i2c_device_remove(struct device *dev)
--
Jean Delvare
_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i2c: Keep client->driver and client->dev.driver in sync
[not found] ` <20080309111626.1d531cd4-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
@ 2008-03-09 15:23 ` David Brownell
0 siblings, 0 replies; 4+ messages in thread
From: David Brownell @ 2008-03-09 15:23 UTC (permalink / raw)
To: Jean Delvare; +Cc: Linux I2C
On Sunday 09 March 2008, Jean Delvare wrote:
> Hi David,
>
> On Sat, 8 Mar 2008 13:12:36 -0800, David Brownell wrote:
> > The only issue I have is that code which the driver probe()
> > calls may expect client->driver to be set, but it won't be...
> >
> > While I'd rather see client->driver vanish, in this case I'd
> > just suggest leaving the early assignment, and nulling it out
> > on error (instead of assigning it on success).
>
> Oh well, that's exactly what Hans' patch did originally, I changed it
> to make the code more simple, but if you think it is better that way,
> I'll revert this change of mine. Here you go:
Yeah, this has much less chance to break something inadvertently.
- Dave
> From: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
>
> Ensure that client->driver is set to NULL if the probe() returns an
> error (this keeps client->driver and client->dev.driver in sync).
>
> Signed-off-by: Hans Verkuil <hverkuil-qWit8jRvyhVmR6Xm/wNWPw@public.gmane.org>
> Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
> ---
> drivers/i2c/i2c-core.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> --- linux-2.6.25-rc4.orig/drivers/i2c/i2c-core.c 2008-03-08 17:57:52.000000000 +0100
> +++ linux-2.6.25-rc4/drivers/i2c/i2c-core.c 2008-03-09 11:03:53.000000000 +0100
> @@ -90,12 +90,16 @@ static int i2c_device_probe(struct devic
> {
> struct i2c_client *client = to_i2c_client(dev);
> struct i2c_driver *driver = to_i2c_driver(dev->driver);
> + int status;
>
> if (!driver->probe)
> return -ENODEV;
> client->driver = driver;
> dev_dbg(dev, "probe\n");
> - return driver->probe(client);
> + status = driver->probe(client);
> + if (status)
> + client->driver = NULL;
> + return status;
> }
>
> static int i2c_device_remove(struct device *dev)
>
>
>
> --
> Jean Delvare
>
_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-03-09 15:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-08 20:49 [PATCH] i2c: Keep client->driver and client->dev.driver in sync Jean Delvare
[not found] ` <20080308214911.5344eba9-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-03-08 21:12 ` David Brownell
[not found] ` <200803081312.36524.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
2008-03-09 10:16 ` Jean Delvare
[not found] ` <20080309111626.1d531cd4-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-03-09 15:23 ` David Brownell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox