lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 10 Oct 2006 15:14:04 +1000
From:	Paul Mackerras <paulus@...ba.org>
To:	Andrew Morton <akpm@...l.org>
Cc:	greg@...ah.com, linux-kernel@...r.kernel.org
Subject: Re: Why is device_create_file __must_check?

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.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ