From: Jean Delvare <khali@linux-fr.org>
To: "Jon Smirl" <jonsmirl@gmail.com>
Cc: lkml <linux-kernel@vger.kernel.org>, i2c@lm-sensors.org
Subject: Re: [i2c] [PATCH] Fix i2c module parameter permissions for read/write
Date: Sun, 4 Nov 2007 10:55:01 +0100 [thread overview]
Message-ID: <20071104105501.380a840a@hyperion.delvare> (raw)
In-Reply-To: <9e4733910711032155j1649a3b8u56a59e754d77f61b@mail.gmail.com>
Hi John,
On Sun, 4 Nov 2007 00:55:15 -0400, Jon Smirl wrote:
> The permissions of i2c module parameters were set to zero making the
> parameters invisible and unsettable from the kernel command line. This
> patch changes the permissions to the standard 0644 read/write.
These permissions have nothing to do with the kernel command line. They
define whether a file is created in sysfs for the respective module
parameter. Even with permissions set to 0, you can still set the value
in question from the kernel command line with <module>.<parm>=<value>.
Also, there's no such think as "standard 0644" permissions. For some
parameters, it doesn't make much sense to expose them in sysfs. For
others it doesn't make sense (or could even be dangerous) to make them
writable. Each parameter has its own requirements.
>
> Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
> ---
>
> diff --git a/include/linux/i2c.h b/include/linux/i2c.h
> index 8033e6b..395e430 100644
> --- a/include/linux/i2c.h
> +++ b/include/linux/i2c.h
> @@ -588,7 +588,7 @@ union i2c_smbus_data {
> #define I2C_CLIENT_MODULE_PARM(var,desc) \
> static unsigned short var[I2C_CLIENT_MAX_OPTS] = I2C_CLIENT_DEFAULTS; \
> static unsigned int var##_num; \
> - module_param_array(var, short, &var##_num, 0); \
> + module_param_array(var, short, &var##_num, 0644); \
> MODULE_PARM_DESC(var,desc)
>
> #define I2C_CLIENT_MODULE_PARM_FORCE(name) \
>
>
--
Jean Delvare
next prev parent reply other threads:[~2007-11-04 9:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-04 4:55 Jon Smirl
2007-11-04 9:55 ` Jean Delvare [this message]
2007-11-04 13:39 ` [i2c] " Jon Smirl
2007-11-06 16:51 ` Jean Delvare
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=20071104105501.380a840a@hyperion.delvare \
--to=khali@linux-fr.org \
--cc=i2c@lm-sensors.org \
--cc=jonsmirl@gmail.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®