From: Dan Carpenter <dan.carpenter@oracle.com>
To: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH WIP] parport: add device model
Date: Mon, 13 Apr 2015 13:38:22 +0300 [thread overview]
Message-ID: <20150413103822.GM16501@mwanda> (raw)
In-Reply-To: <20150411052651.GC3496@sudip-PC>
On Sat, Apr 11, 2015 at 10:56:51AM +0530, Sudip Mukherjee wrote:
> On Fri, Apr 10, 2015 at 05:49:55PM +0300, Dan Carpenter wrote:
> > On Fri, Apr 10, 2015 at 08:00:38PM +0530, Sudip Mukherjee wrote:
> <snip>
> > > +
> > > parport_default_sysctl_table.sysctl_header =
> > > register_sysctl_table(parport_default_sysctl_table.dev_dir);
> >
> > Should we return an error if this fails?
> not sure. but even if it fails it will not affect the normal functioning
> of the parallel port. but I will add that in the next WIP patch.
Probably, it's better to leave it as-is if you aren't sure. I was just
asking because I didn't know myself.
> >
> > > - return 0;
> > > + ret = parport_bus_init();
> > > + if (ret)
> > > + unregister_sysctl_table(parport_default_sysctl_table.
> > > + sysctl_header);
> >
> >
> > ret = parport_bus_init();
> > if (ret) {
> > unregister_sysctl_table(
> > parport_default_sysctl_table.sysctl_header);
> > return ret;
> > }
> >
> > return 0;
> do we need two returns here? parport_bus_init() will return 0 if it succeeds,
> so return ret will return either 0 or the error code whatever the case maybe.
Yes, they work the same, you're right. But the other style is better
and more robust.
I have been trying to explain this to people but "return 0;" is
beautiful code. Functions normally are a list of statements in a row
with exceptions for error handling. The last statement in the success
path should be "return 0;".
Don't mix error and success paths. I see a quite a few bugs like this
where the error handling doesn't have a return then later we add some
code at the end of the function and forget to add the return.
ret = parport_bus_init();
if (ret)
unregister_sysctl_table();
ret = something_else();
return ret;
> >
> >
> > > + return ret;
> > > }
> > >
> > > static void __exit parport_default_proc_unregister(void)
> > > @@ -570,6 +576,7 @@ static void __exit parport_default_proc_unregister(void)
> > > sysctl_header);
> > > parport_default_sysctl_table.sysctl_header = NULL;
> > > }
> > > + parport_bus_exit();
> >
> > Do we need this function? Can't we call bus_unregister() directly?
> no, we dont need. on similar reasoning we also donot need parport_bus_init().
> I will remove both. :)
> >
> <snip>
> >
> > > +struct bus_type parport_bus_type = {
> > > + .name = "parport",
> > > + .match = parport_match,
> >
> > There is no need for a match function. If it's NULL that's the same a
> > "return 1" fuction. This is called from driver_match_device().
> ok.
> >
> <snip>
> > > + ret = driver_register(&drv->driver);
> > > + if (ret < 0) {
> >
> > if (ret) {
> >
> > > + mutex_lock(®istration_lock);
> > > + list_del_init(&drv->list);
> > > + list_for_each_entry(port, &portlist, list)
> > > + drv->detach(port);
> >
> > Does this free port? Should this be list_for_each_entry_safe?
> I am not sure what you meant by "free port". attach will claim the port,
> and the port will be marked. detach will just remove that connection and
> the driver will release the port.
My concern is that we dereference port to get the next port. If it's
freed now it causes a use after free. It's easier to detect if you have
free poisoning turned on.
> >
> > > + mutex_unlock(®istration_lock);
> >
> > return ret;
> > > + }
> > > +
> > > + return ret;
> >
> > return 0;
> do we need two returns? as ret will be either 0 or error code.
> >
> > > }
> > >
> <snip>
> >
> > Please use "if (ret) " everywhere unless it returns positive on success.
> sure.
> >
> > I know that I have done a rubbish review. I'm going to have to review
> > this properly later.
> main thing i wanted to know is if my approach is correct. since nothing
> on that so I hope I am on the correct track. Thanks.
> I will send in the next version in a day or two.
Heh. No, I really know less than you do about the driver model at this
point. Sorry. It's going to take me a bit to get up to speed.
regards,
dan carpenter
next prev parent reply other threads:[~2015-04-13 10:38 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-10 14:30 [PATCH WIP] parport: add device model Sudip Mukherjee
2015-04-10 14:49 ` Dan Carpenter
2015-04-11 5:26 ` Sudip Mukherjee
2015-04-11 7:27 ` Greg KH
2015-04-11 8:11 ` Sudip Mukherjee
2015-04-13 8:27 ` Sudip Mukherjee
2015-04-13 8:43 ` Greg KH
2015-04-13 10:02 ` Sudip Mukherjee
2015-04-13 10:42 ` Greg KH
2015-04-13 10:38 ` Dan Carpenter [this message]
2015-04-10 18:24 ` Ondrej Zary
2015-04-11 5:05 ` Sudip Mukherjee
2015-04-11 9:24 ` Ondrej Zary
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150413103822.GM16501@mwanda \
--to=dan.carpenter@oracle.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sudipm.mukherjee@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox