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
nexedi
linux
Commits
40f0e2b8
Commit
40f0e2b8
authored
Feb 19, 2004
by
Ben Collins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IEEE1394(r1140): Add a bus rescan bus_attr file, and an ignore_driver attr for ud's
parent
3dc9046f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
10 deletions
+66
-10
drivers/ieee1394/ieee1394_core.c
drivers/ieee1394/ieee1394_core.c
+8
-2
drivers/ieee1394/nodemgr.c
drivers/ieee1394/nodemgr.c
+54
-6
drivers/ieee1394/nodemgr.h
drivers/ieee1394/nodemgr.h
+4
-2
No files found.
drivers/ieee1394/ieee1394_core.c
View file @
40f0e2b8
...
...
@@ -990,6 +990,8 @@ void abort_timedouts(unsigned long __opaque)
static
int
__init
ieee1394_init
(
void
)
{
int
i
;
devfs_mk_dir
(
"ieee1394"
);
if
(
register_chrdev_region
(
IEEE1394_CORE_DEV
,
256
,
"ieee1394"
))
{
...
...
@@ -1003,7 +1005,8 @@ static int __init ieee1394_init(void)
0
,
0
,
NULL
,
NULL
);
bus_register
(
&
ieee1394_bus_type
);
bus_create_file
(
&
ieee1394_bus_type
,
&
bus_attr_destroy
);
for
(
i
=
0
;
fw_bus_attrs
[
i
];
i
++
)
bus_create_file
(
&
ieee1394_bus_type
,
fw_bus_attrs
[
i
]);
class_register
(
&
hpsb_host_class
);
if
(
init_csr
())
...
...
@@ -1019,13 +1022,16 @@ static int __init ieee1394_init(void)
static
void
__exit
ieee1394_cleanup
(
void
)
{
int
i
;
if
(
!
disable_nodemgr
)
cleanup_ieee1394_nodemgr
();
cleanup_csr
();
class_unregister
(
&
hpsb_host_class
);
bus_remove_file
(
&
ieee1394_bus_type
,
&
bus_attr_destroy
);
for
(
i
=
0
;
fw_bus_attrs
[
i
];
i
++
)
bus_remove_file
(
&
ieee1394_bus_type
,
fw_bus_attrs
[
i
]);
bus_unregister
(
&
ieee1394_bus_type
);
kmem_cache_destroy
(
hpsb_packet_cache
);
...
...
drivers/ieee1394/nodemgr.c
View file @
40f0e2b8
...
...
@@ -306,10 +306,34 @@ static ssize_t fw_show_ne_tlabels_mask(struct device *dev, char *buf)
return
sprintf
(
buf
,
"0x%016lx
\n
"
,
ne
->
tpool
->
pool
[
0
]);
#endif
}
static
DEVICE_ATTR
(
tlabels_mask
,
S_IRUGO
,
fw_show_ne_tlabels_mask
,
NULL
);
static
DEVICE_ATTR
(
tlabels_mask
,
S_IRUGO
,
fw_show_ne_tlabels_mask
,
NULL
);
static
ssize_t
fw_set_destroy
(
struct
bus_type
*
bus
,
const
char
*
buf
,
size_t
count
)
static
ssize_t
fw_set_ignore_driver
(
struct
device
*
dev
,
const
char
*
buf
,
size_t
count
)
{
struct
unit_directory
*
ud
=
container_of
(
dev
,
struct
unit_directory
,
device
);
int
state
=
simple_strtoul
(
buf
,
NULL
,
10
);
if
(
state
==
1
)
{
down_write
(
&
dev
->
bus
->
subsys
.
rwsem
);
device_release_driver
(
dev
);
ud
->
ignore_driver
=
1
;
up_write
(
&
dev
->
bus
->
subsys
.
rwsem
);
}
else
if
(
!
state
)
ud
->
ignore_driver
=
0
;
return
count
;
}
static
ssize_t
fw_get_ignore_driver
(
struct
device
*
dev
,
char
*
buf
)
{
struct
unit_directory
*
ud
=
container_of
(
dev
,
struct
unit_directory
,
device
);
return
sprintf
(
buf
,
"%d
\n
"
,
ud
->
ignore_driver
);
}
static
DEVICE_ATTR
(
ignore_driver
,
S_IWUSR
|
S_IRUGO
,
fw_get_ignore_driver
,
fw_set_ignore_driver
);
static
ssize_t
fw_set_destroy_node
(
struct
bus_type
*
bus
,
const
char
*
buf
,
size_t
count
)
{
struct
node_entry
*
ne
;
u64
guid
=
(
u64
)
simple_strtoull
(
buf
,
NULL
,
16
);
...
...
@@ -323,11 +347,34 @@ static ssize_t fw_set_destroy(struct bus_type *bus, const char *buf, size_t coun
return
count
;
}
static
ssize_t
fw_get_destroy
(
struct
bus_type
*
bus
,
char
*
buf
)
static
ssize_t
fw_get_destroy
_node
(
struct
bus_type
*
bus
,
char
*
buf
)
{
return
sprintf
(
buf
,
"You can destroy in_limbo nodes by writing their GUID to this file
\n
"
);
}
BUS_ATTR
(
destroy
,
S_IWUSR
|
S_IRUGO
,
fw_get_destroy
,
fw_set_destroy
);
static
BUS_ATTR
(
destroy_node
,
S_IWUSR
|
S_IRUGO
,
fw_get_destroy_node
,
fw_set_destroy_node
);
static
ssize_t
fw_set_rescan
(
struct
bus_type
*
bus
,
const
char
*
buf
,
size_t
count
)
{
int
state
=
simple_strtoul
(
buf
,
NULL
,
10
);
if
(
state
==
1
)
bus_rescan_devices
(
&
ieee1394_bus_type
);
return
count
;
}
static
ssize_t
fw_get_rescan
(
struct
bus_type
*
bus
,
char
*
buf
)
{
return
sprintf
(
buf
,
"You can force a rescan of the bus for "
"drivers by writing a 1 to this file
\n
"
);
}
static
BUS_ATTR
(
rescan
,
S_IWUSR
|
S_IRUGO
,
fw_get_rescan
,
fw_set_rescan
);
struct
bus_attribute
*
const
fw_bus_attrs
[]
=
{
&
bus_attr_destroy_node
,
&
bus_attr_rescan
,
NULL
};
fw_attr
(
ne
,
struct
node_entry
,
capabilities
,
unsigned
int
,
"0x%06x
\n
"
)
...
...
@@ -370,6 +417,7 @@ fw_attr_td(ud, struct unit_directory, model_name_kv)
static
struct
device_attribute
*
const
fw_ud_attrs
[]
=
{
&
dev_attr_ud_address
,
&
dev_attr_ud_length
,
&
dev_attr_ignore_driver
,
};
...
...
@@ -553,7 +601,7 @@ static int nodemgr_bus_match(struct device * dev, struct device_driver * drv)
ud
=
container_of
(
dev
,
struct
unit_directory
,
device
);
driver
=
container_of
(
drv
,
struct
hpsb_protocol_driver
,
driver
);
if
(
ud
->
ne
->
in_limbo
)
if
(
ud
->
ne
->
in_limbo
||
ud
->
ignore_driver
)
return
0
;
for
(
id
=
driver
->
id_table
;
id
->
match_flags
!=
0
;
id
++
)
{
...
...
@@ -1000,7 +1048,7 @@ static int nodemgr_hotplug(struct device *dev, char **envp, int num_envp,
ud
=
container_of
(
dev
,
struct
unit_directory
,
device
);
if
(
ud
->
ne
->
in_limbo
)
if
(
ud
->
ne
->
in_limbo
||
ud
->
ignore_driver
)
return
-
ENODEV
;
scratch
=
buffer
;
...
...
drivers/ieee1394/nodemgr.h
View file @
40f0e2b8
...
...
@@ -73,6 +73,8 @@ struct unit_directory {
unsigned
int
id
;
int
ignore_driver
;
int
length
;
/* Number of quadlets */
struct
device
device
;
...
...
@@ -193,7 +195,7 @@ void cleanup_ieee1394_nodemgr(void);
/* The template for a host device */
extern
struct
device
nodemgr_dev_template_host
;
/* Bus attribute
to destroy limbo'd nodes
*/
extern
struct
bus_attribute
bus_attr_destroy
;
/* Bus attribute
s we export
*/
extern
struct
bus_attribute
*
const
fw_bus_attrs
[]
;
#endif
/* _IEEE1394_NODEMGR_H */
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