From: Paul Mackerras <paulus@samba.org>
To: Andrew Morton <akpm@osdl.org>
Cc: greg@kroah.com, linux-kernel@vger.kernel.org
Subject: Re: Why is device_create_file __must_check?
Date: Tue, 10 Oct 2006 15:14:04 +1000 [thread overview]
Message-ID: <17707.11292.661824.337474@cargo.ozlabs.ibm.com> (raw)
In-Reply-To: <20061009214936.a2788702.akpm@osdl.org>
Andrew Morton writes:
> There are no super-strong reasons here, but if device_create_file() fails
> then the required control files aren't there and the subsystem isn't
> working as intended. If it's in a module then we should fail the modprobe.
> If it's a bootup thing then best we can do is to panic. Or at least log
> the event.
In the case of the windfarm driver, the sysfs files are reporting
things like cpu voltage, current, temperature etc. which can be
interesting to know about, but the sysfs files are not essential to
the operation of the driver. So just some cheesy printk would do in
that sort of situation, I guess.
> The most common cause of this is a programming error: we tried to create
> the same entry twice. We want to know about that.
In that case a WARN_ON inside device_create_file when the duplicate is
detected would be better - less code, and only one place where the
check needs to be done. The WARN_ON will give us a backtrace so we
can see where the second creation attempt happened.
> Because it can fail. We need to take _some_ action if the setup failed - at
> least report it so the user (and the kernel developers) know that something
> is going wrong.
So we have to add printks in all sorts of places where the
device_create_file has never failed before. If you're that concerned,
why not add a WARN_ON(error) in device_create_file() ?
Paul.
next prev parent reply other threads:[~2006-10-10 5:14 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-10 4:32 Paul Mackerras
2006-10-10 4:49 ` Andrew Morton
2006-10-10 5:04 ` Greg KH
2006-10-10 5:14 ` Paul Mackerras [this message]
2006-10-10 5:26 ` Andrew Morton
2006-10-10 7:03 ` Paul Mackerras
2006-10-10 5:27 ` Greg KH
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=17707.11292.661824.337474@cargo.ozlabs.ibm.com \
--to=paulus@samba.org \
--cc=akpm@osdl.org \
--cc=greg@kroah.com \
--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
all inboxes | Powered by JetHome®