Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4b5d6988
Commit
4b5d6988
authored
Nov 03, 2004
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge kroah.com:/home/greg/linux/BK/bleed-2.6
into kroah.com:/home/greg/linux/BK/driver-2.6
parents
c9e6b4d9
80022d91
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
153 additions
and
69 deletions
+153
-69
MAINTAINERS
MAINTAINERS
+6
-0
drivers/base/bus.c
drivers/base/bus.c
+60
-41
drivers/base/class.c
drivers/base/class.c
+26
-0
drivers/base/core.c
drivers/base/core.c
+3
-3
drivers/block/genhd.c
drivers/block/genhd.c
+39
-1
fs/sysfs/dir.c
fs/sysfs/dir.c
+2
-2
fs/sysfs/file.c
fs/sysfs/file.c
+3
-1
fs/sysfs/inode.c
fs/sysfs/inode.c
+0
-5
fs/sysfs/mount.c
fs/sysfs/mount.c
+1
-1
fs/sysfs/symlink.c
fs/sysfs/symlink.c
+9
-8
fs/sysfs/sysfs.h
fs/sysfs/sysfs.h
+0
-2
lib/kobject.c
lib/kobject.c
+1
-0
lib/kobject_uevent.c
lib/kobject_uevent.c
+3
-5
No files found.
MAINTAINERS
View file @
4b5d6988
...
...
@@ -1247,6 +1247,12 @@ W: http://nfs.sourceforge.net/
W: http://www.cse.unsw.edu.au/~neilb/patches/linux-devel/
S: Maintained
KERNEL EVENT LAYER (KOBJECT_UEVENT)
P: Robert Love
M: rml@novell.com
L: linux-kernel@vger.kernel.org
S: Maintained
LANMEDIA WAN CARD DRIVER
P: Andrew Stanley-Jones
M: asj@lanmedia.com
...
...
drivers/base/bus.c
View file @
4b5d6988
...
...
@@ -135,6 +135,52 @@ static struct kobj_type ktype_bus = {
decl_subsys
(
bus
,
&
ktype_bus
,
NULL
);
static
int
__bus_for_each_dev
(
struct
bus_type
*
bus
,
struct
device
*
start
,
void
*
data
,
int
(
*
fn
)(
struct
device
*
,
void
*
))
{
struct
list_head
*
head
;
struct
device
*
dev
;
int
error
=
0
;
if
(
!
(
bus
=
get_bus
(
bus
)))
return
-
EINVAL
;
head
=
&
bus
->
devices
.
list
;
dev
=
list_prepare_entry
(
start
,
head
,
bus_list
);
list_for_each_entry_continue
(
dev
,
head
,
bus_list
)
{
get_device
(
dev
);
error
=
fn
(
dev
,
data
);
put_device
(
dev
);
if
(
error
)
break
;
}
put_bus
(
bus
);
return
error
;
}
static
int
__bus_for_each_drv
(
struct
bus_type
*
bus
,
struct
device_driver
*
start
,
void
*
data
,
int
(
*
fn
)(
struct
device_driver
*
,
void
*
))
{
struct
list_head
*
head
;
struct
device_driver
*
drv
;
int
error
=
0
;
if
(
!
(
bus
=
get_bus
(
bus
)))
return
-
EINVAL
;
head
=
&
bus
->
drivers
.
list
;
drv
=
list_prepare_entry
(
start
,
head
,
kobj
.
entry
);
list_for_each_entry_continue
(
drv
,
head
,
kobj
.
entry
)
{
get_driver
(
drv
);
error
=
fn
(
drv
,
data
);
put_driver
(
drv
);
if
(
error
)
break
;
}
put_bus
(
bus
);
return
error
;
}
/**
* bus_for_each_dev - device iterator.
* @bus: bus type.
...
...
@@ -154,30 +200,16 @@ decl_subsys(bus, &ktype_bus, NULL);
* to retain this data, it should do, and increment the reference
* count in the supplied callback.
*/
int
bus_for_each_dev
(
struct
bus_type
*
bus
,
struct
device
*
start
,
void
*
data
,
int
(
*
fn
)(
struct
device
*
,
void
*
))
{
struct
device
*
dev
;
struct
list_head
*
head
;
int
error
=
0
;
if
(
!
(
bus
=
get_bus
(
bus
)))
return
-
EINVAL
;
head
=
&
bus
->
devices
.
list
;
dev
=
list_prepare_entry
(
start
,
head
,
bus_list
);
int
ret
;
down_read
(
&
bus
->
subsys
.
rwsem
);
list_for_each_entry_continue
(
dev
,
head
,
bus_list
)
{
get_device
(
dev
);
error
=
fn
(
dev
,
data
);
put_device
(
dev
);
if
(
error
)
break
;
}
ret
=
__bus_for_each_dev
(
bus
,
start
,
data
,
fn
);
up_read
(
&
bus
->
subsys
.
rwsem
);
put_bus
(
bus
);
return
error
;
return
ret
;
}
/**
...
...
@@ -203,27 +235,12 @@ int bus_for_each_dev(struct bus_type * bus, struct device * start,
int
bus_for_each_drv
(
struct
bus_type
*
bus
,
struct
device_driver
*
start
,
void
*
data
,
int
(
*
fn
)(
struct
device_driver
*
,
void
*
))
{
struct
list_head
*
head
;
struct
device_driver
*
drv
;
int
error
=
0
;
if
(
!
(
bus
=
get_bus
(
bus
)))
return
-
EINVAL
;
head
=
&
bus
->
drivers
.
list
;
drv
=
list_prepare_entry
(
start
,
head
,
kobj
.
entry
);
int
ret
;
down_read
(
&
bus
->
subsys
.
rwsem
);
list_for_each_entry_continue
(
drv
,
head
,
kobj
.
entry
)
{
get_driver
(
drv
);
error
=
fn
(
drv
,
data
);
put_driver
(
drv
);
if
(
error
)
break
;
}
ret
=
__bus_for_each_drv
(
bus
,
start
,
data
,
fn
);
up_read
(
&
bus
->
subsys
.
rwsem
);
put_bus
(
bus
);
return
error
;
return
ret
;
}
/**
...
...
@@ -325,10 +342,10 @@ int device_attach(struct device * dev)
* driver_attach - try to bind driver to devices.
* @drv: driver.
*
* Walk the list of devices that the bus has on it and try to
match
*
the driver with each one.
*
If bus_match() returns 0 and the @dev->driver is set, we've found
*
a
compatible pair.
* Walk the list of devices that the bus has on it and try to
*
match the driver with each one. If driver_probe_device()
*
returns 0 and the @dev->driver is set, we've found a
* compatible pair.
*
* Note that we ignore the -ENODEV error from driver_probe_device(),
* since it's perfectly valid for a driver not to bind to any devices.
...
...
@@ -590,7 +607,9 @@ int bus_rescan_devices(struct bus_type * bus)
{
int
count
=
0
;
bus_for_each_dev
(
bus
,
NULL
,
&
count
,
bus_rescan_devices_helper
);
down_write
(
&
bus
->
subsys
.
rwsem
);
__bus_for_each_dev
(
bus
,
NULL
,
&
count
,
bus_rescan_devices_helper
);
up_write
(
&
bus
->
subsys
.
rwsem
);
return
count
;
}
...
...
drivers/base/class.c
View file @
4b5d6988
...
...
@@ -283,8 +283,34 @@ static int class_hotplug(struct kset *kset, struct kobject *kobj, char **envp,
{
struct
class_device
*
class_dev
=
to_class_dev
(
kobj
);
int
retval
=
0
;
int
i
=
0
;
int
length
=
0
;
pr_debug
(
"%s - name = %s
\n
"
,
__FUNCTION__
,
class_dev
->
class_id
);
if
(
class_dev
->
dev
)
{
/* add physical device, backing this device */
struct
device
*
dev
=
class_dev
->
dev
;
char
*
path
=
kobject_get_path
(
&
dev
->
kobj
,
GFP_KERNEL
);
add_hotplug_env_var
(
envp
,
num_envp
,
&
i
,
buffer
,
buffer_size
,
&
length
,
"PHYSDEVPATH=%s"
,
path
);
kfree
(
path
);
/* add bus name of physical device */
if
(
dev
->
bus
)
add_hotplug_env_var
(
envp
,
num_envp
,
&
i
,
buffer
,
buffer_size
,
&
length
,
"PHYSDEVBUS=%s"
,
dev
->
bus
->
name
);
/* terminate, set to next free slot, shrink available space */
envp
[
i
]
=
NULL
;
envp
=
&
envp
[
i
];
num_envp
-=
i
;
buffer
=
&
buffer
[
length
];
buffer_size
-=
length
;
}
if
(
class_dev
->
class
->
hotplug
)
{
/* have the bus specific function add its stuff */
retval
=
class_dev
->
class
->
hotplug
(
class_dev
,
envp
,
num_envp
,
...
...
drivers/base/core.c
View file @
4b5d6988
...
...
@@ -209,12 +209,12 @@ void device_initialize(struct device *dev)
*/
int
device_add
(
struct
device
*
dev
)
{
struct
device
*
parent
;
int
error
;
struct
device
*
parent
=
NULL
;
int
error
=
-
EINVAL
;
dev
=
get_device
(
dev
);
if
(
!
dev
||
!
strlen
(
dev
->
bus_id
))
return
-
EINVAL
;
goto
Error
;
parent
=
get_device
(
dev
->
parent
);
...
...
drivers/block/genhd.c
View file @
4b5d6988
...
...
@@ -438,8 +438,46 @@ static int block_hotplug_filter(struct kset *kset, struct kobject *kobj)
return
((
ktype
==
&
ktype_block
)
||
(
ktype
==
&
ktype_part
));
}
static
int
block_hotplug
(
struct
kset
*
kset
,
struct
kobject
*
kobj
,
char
**
envp
,
int
num_envp
,
char
*
buffer
,
int
buffer_size
)
{
struct
device
*
dev
=
NULL
;
struct
kobj_type
*
ktype
=
get_ktype
(
kobj
);
int
length
=
0
;
int
i
=
0
;
/* get physical device backing disk or partition */
if
(
ktype
==
&
ktype_block
)
{
struct
gendisk
*
disk
=
container_of
(
kobj
,
struct
gendisk
,
kobj
);
dev
=
disk
->
driverfs_dev
;
}
else
if
(
ktype
==
&
ktype_part
)
{
struct
gendisk
*
disk
=
container_of
(
kobj
->
parent
,
struct
gendisk
,
kobj
);
dev
=
disk
->
driverfs_dev
;
}
if
(
dev
)
{
/* add physical device, backing this device */
char
*
path
=
kobject_get_path
(
&
dev
->
kobj
,
GFP_KERNEL
);
add_hotplug_env_var
(
envp
,
num_envp
,
&
i
,
buffer
,
buffer_size
,
&
length
,
"PHYSDEVPATH=%s"
,
path
);
kfree
(
path
);
/* add bus name of physical device */
if
(
dev
->
bus
)
add_hotplug_env_var
(
envp
,
num_envp
,
&
i
,
buffer
,
buffer_size
,
&
length
,
"PHYSDEVBUS=%s"
,
dev
->
bus
->
name
);
envp
[
i
]
=
NULL
;
}
return
0
;
}
static
struct
kset_hotplug_ops
block_hotplug_ops
=
{
.
filter
=
block_hotplug_filter
,
.
filter
=
block_hotplug_filter
,
.
hotplug
=
block_hotplug
,
};
/* declare block_subsys. */
...
...
fs/sysfs/dir.c
View file @
4b5d6988
...
...
@@ -56,7 +56,7 @@ int sysfs_make_dirent(struct sysfs_dirent * parent_sd, struct dentry * dentry,
sd
=
sysfs_new_dirent
(
parent_sd
,
element
);
if
(
!
sd
)
return
-
ENOMEM
;
return
0
;
sd
->
s_mode
=
mode
;
sd
->
s_type
=
type
;
...
...
@@ -201,7 +201,7 @@ static int sysfs_attach_link(struct sysfs_dirent * sd, struct dentry * dentry)
return
err
;
}
struct
dentry
*
sysfs_lookup
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
st
atic
st
ruct
dentry
*
sysfs_lookup
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
struct
sysfs_dirent
*
parent_sd
=
dentry
->
d_parent
->
d_fsdata
;
...
...
fs/sysfs/file.c
View file @
4b5d6988
...
...
@@ -330,11 +330,13 @@ static int sysfs_release(struct inode * inode, struct file * filp)
{
struct
kobject
*
kobj
=
to_kobj
(
filp
->
f_dentry
->
d_parent
);
struct
attribute
*
attr
=
to_attr
(
filp
->
f_dentry
);
struct
module
*
owner
=
attr
->
owner
;
struct
sysfs_buffer
*
buffer
=
filp
->
private_data
;
if
(
kobj
)
kobject_put
(
kobj
);
module_put
(
attr
->
owner
);
/* After this point, attr should not be accessed. */
module_put
(
owner
);
if
(
buffer
)
{
if
(
buffer
->
page
)
...
...
fs/sysfs/inode.c
View file @
4b5d6988
...
...
@@ -76,11 +76,6 @@ int sysfs_create(struct dentry * dentry, int mode, int (*init)(struct inode *))
return
error
;
}
int
sysfs_mknod
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
int
mode
,
dev_t
dev
)
{
return
sysfs_create
(
dentry
,
mode
,
NULL
);
}
struct
dentry
*
sysfs_get_dentry
(
struct
dentry
*
parent
,
const
char
*
name
)
{
struct
qstr
qstr
;
...
...
fs/sysfs/mount.c
View file @
4b5d6988
...
...
@@ -22,7 +22,7 @@ static struct super_operations sysfs_ops = {
.
drop_inode
=
generic_delete_inode
,
};
struct
sysfs_dirent
sysfs_root
=
{
st
atic
st
ruct
sysfs_dirent
sysfs_root
=
{
.
s_sibling
=
LIST_HEAD_INIT
(
sysfs_root
.
s_sibling
),
.
s_children
=
LIST_HEAD_INIT
(
sysfs_root
.
s_children
),
.
s_element
=
NULL
,
...
...
fs/sysfs/symlink.c
View file @
4b5d6988
...
...
@@ -9,12 +9,6 @@
#include "sysfs.h"
struct
inode_operations
sysfs_symlink_inode_operations
=
{
.
readlink
=
generic_readlink
,
.
follow_link
=
sysfs_follow_link
,
.
put_link
=
sysfs_put_link
,
};
static
int
object_depth
(
struct
kobject
*
kobj
)
{
struct
kobject
*
p
=
kobj
;
...
...
@@ -157,7 +151,7 @@ static int sysfs_getlink(struct dentry *dentry, char * path)
}
int
sysfs_follow_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
static
int
sysfs_follow_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
int
error
=
-
ENOMEM
;
unsigned
long
page
=
get_zeroed_page
(
GFP_KERNEL
);
...
...
@@ -167,13 +161,20 @@ int sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
return
0
;
}
void
sysfs_put_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
static
void
sysfs_put_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
char
*
page
=
nd_get_link
(
nd
);
if
(
!
IS_ERR
(
page
))
free_page
((
unsigned
long
)
page
);
}
struct
inode_operations
sysfs_symlink_inode_operations
=
{
.
readlink
=
generic_readlink
,
.
follow_link
=
sysfs_follow_link
,
.
put_link
=
sysfs_put_link
,
};
EXPORT_SYMBOL_GPL
(
sysfs_create_link
);
EXPORT_SYMBOL_GPL
(
sysfs_remove_link
);
fs/sysfs/sysfs.h
View file @
4b5d6988
...
...
@@ -17,8 +17,6 @@ extern void sysfs_remove_subdir(struct dentry *);
extern
const
unsigned
char
*
sysfs_get_name
(
struct
sysfs_dirent
*
sd
);
extern
void
sysfs_drop_dentry
(
struct
sysfs_dirent
*
sd
,
struct
dentry
*
parent
);
extern
int
sysfs_follow_link
(
struct
dentry
*
,
struct
nameidata
*
);
extern
void
sysfs_put_link
(
struct
dentry
*
,
struct
nameidata
*
);
extern
struct
rw_semaphore
sysfs_rename_sem
;
extern
struct
super_block
*
sysfs_sb
;
extern
struct
file_operations
sysfs_dir_operations
;
...
...
lib/kobject.c
View file @
4b5d6988
...
...
@@ -183,6 +183,7 @@ int kobject_add(struct kobject * kobj)
unlink
(
kobj
);
if
(
parent
)
kobject_put
(
parent
);
kobject_put
(
kobj
);
}
else
{
kobject_hotplug
(
kobj
,
KOBJ_ADD
);
}
...
...
lib/kobject_uevent.c
View file @
4b5d6988
...
...
@@ -120,9 +120,8 @@ static int do_kobject_uevent(struct kobject *kobj, enum kobject_action action,
sprintf
(
attrpath
,
"%s/%s"
,
path
,
attr
->
name
);
rc
=
send_uevent
(
signal
,
attrpath
,
NULL
,
gfp_mask
);
kfree
(
attrpath
);
}
else
{
}
else
rc
=
send_uevent
(
signal
,
path
,
NULL
,
gfp_mask
);
}
exit:
kfree
(
path
);
...
...
@@ -148,7 +147,6 @@ int kobject_uevent_atomic(struct kobject *kobj, enum kobject_action action,
{
return
do_kobject_uevent
(
kobj
,
action
,
attr
,
GFP_ATOMIC
);
}
EXPORT_SYMBOL_GPL
(
kobject_uevent_atomic
);
static
int
__init
kobject_uevent_init
(
void
)
...
...
@@ -164,11 +162,11 @@ static int __init kobject_uevent_init(void)
return
0
;
}
core_initcall
(
kobject_uevent_init
);
post
core_initcall
(
kobject_uevent_init
);
#else
static
inline
int
send_uevent
(
const
char
*
signal
,
const
char
*
obj
,
c
onst
void
*
buf
,
int
buflen
,
int
gfp_mask
)
c
har
**
envp
,
int
gfp_mask
)
{
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment