diff options
author | Tejun Heo <htejun@gmail.com> | 2007-06-13 14:45:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-07-11 19:09:06 -0400 |
commit | 7b595756ec1f49e0049a9e01a1298d53a7faaa15 (patch) | |
tree | cd06687ab3e5c7a5a4ef91903dff207a18c4db76 /drivers/w1/w1.c | |
parent | dbde0fcf9f8f6d477af3c32d9979e789ee680cde (diff) |
sysfs: kill unnecessary attribute->owner
sysfs is now completely out of driver/module lifetime game. After
deletion, a sysfs node doesn't access anything outside sysfs proper,
so there's no reason to hold onto the attribute owners. Note that
often the wrong modules were accounted for as owners leading to
accessing removed modules.
This patch kills now unnecessary attribute->owner. Note that with
this change, userland holding a sysfs node does not prevent the
backing module from being unloaded.
For more info regarding lifetime rule cleanup, please read the
following message.
http://article.gmane.org/gmane.linux.kernel/510293
(tweaked by Greg to not delete the field just yet, to make it easier to
merge things properly.)
Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/w1/w1.c')
-rw-r--r-- | drivers/w1/w1.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c index 7d6876dbcc96..1838cb29b646 100644 --- a/drivers/w1/w1.c +++ b/drivers/w1/w1.c | |||
@@ -128,7 +128,6 @@ static struct bin_attribute w1_slave_attr_bin_id = { | |||
128 | .attr = { | 128 | .attr = { |
129 | .name = "id", | 129 | .name = "id", |
130 | .mode = S_IRUGO, | 130 | .mode = S_IRUGO, |
131 | .owner = THIS_MODULE, | ||
132 | }, | 131 | }, |
133 | .size = 8, | 132 | .size = 8, |
134 | .read = w1_slave_read_id, | 133 | .read = w1_slave_read_id, |
@@ -167,7 +166,6 @@ static struct bin_attribute w1_default_attr = { | |||
167 | .attr = { | 166 | .attr = { |
168 | .name = "rw", | 167 | .name = "rw", |
169 | .mode = S_IRUGO | S_IWUSR, | 168 | .mode = S_IRUGO | S_IWUSR, |
170 | .owner = THIS_MODULE, | ||
171 | }, | 169 | }, |
172 | .size = PAGE_SIZE, | 170 | .size = PAGE_SIZE, |
173 | .read = w1_default_read, | 171 | .read = w1_default_read, |