From: Rolf Eike Beer <eike-kernel@sf-tec.de>
To: Alessandro Zummo <alessandro.zummo@towertech.it>
Cc: Andrew Morton <akpm@osdl.org>,
linux-kernel@vger.kernel.org, Jonathan Corbet <corbet@lwn.net>
Subject: Re: [RTC] Remove superfluous call to call to cdev_del()
Date: Thu, 21 Sep 2006 10:30:02 +0200 [thread overview]
Message-ID: <200609211030.07944.eike-kernel@sf-tec.de> (raw)
In-Reply-To: <20060921095619.0b2f1774@inspiron>
[-- Attachment #1: Type: text/plain, Size: 1380 bytes --]
Alessandro Zummo wrote:
> On Thu, 21 Sep 2006 09:46:06 +0200
>
> Rolf Eike Beer <eike-kernel@sf-tec.de> wrote:
> > If cdev_add() fails there is no good reason to call cdev_del().
> >
> > Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
> >
> > rtc->char_dev.owner = rtc->owner;
> >
> > if (cdev_add(&rtc->char_dev, MKDEV(MAJOR(rtc_devt), rtc->id), 1)) {
> > - cdev_del(&rtc->char_dev);
> > dev_err(class_dev->dev,
> > "failed to add char device %d:%d\n",
> > MAJOR(rtc_devt), rtc->id);
>
> I'm not sure.. this is drivers/char/raw.c:
>
>
> cdev_init(&raw_cdev, &raw_fops);
> if (cdev_add(&raw_cdev, dev, MAX_RAW_MINORS)) {
> kobject_put(&raw_cdev.kobj);
> unregister_chrdev_region(dev, MAX_RAW_MINORS);
> goto error;
> }
>
> in case of failure, it does a kobject_put.
> tha same call is done by cdev_del.
This is unneeded here as it's embedded into struct rtc_device. Jonathan?
> other drivers have implemented different error paths.
> which one is correct?
Probably half of them are wrong, ugly or both. I think this interface is not
very intuitive at all. This two calls needed to set up an embedded cdev are
IMHO the best way to keep people confused. At least the (possible) need to
call cdev_del() on failed cdev_add() is just weird.
Eike
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
next prev parent reply other threads:[~2006-09-21 8:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-21 7:46 [RTC] Remove superfluous call to call to cdev_del() Rolf Eike Beer
2006-09-21 7:56 ` Alessandro Zummo
2006-09-21 8:30 ` Rolf Eike Beer [this message]
2006-09-21 14:44 ` Dmitry Torokhov
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=200609211030.07944.eike-kernel@sf-tec.de \
--to=eike-kernel@sf-tec.de \
--cc=akpm@osdl.org \
--cc=alessandro.zummo@towertech.it \
--cc=corbet@lwn.net \
--cc=linux-kernel@vger.kernel.org \
/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