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
c1b2007c
Commit
c1b2007c
authored
Feb 19, 2004
by
Ben Collins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IEEE1394(r1142): Use a kernel thread to rescan devices so we don't block the writer.
parent
6c816ad1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
drivers/ieee1394/nodemgr.c
drivers/ieee1394/nodemgr.c
+14
-1
No files found.
drivers/ieee1394/nodemgr.c
View file @
c1b2007c
...
@@ -358,13 +358,26 @@ static ssize_t fw_get_destroy_node(struct bus_type *bus, char *buf)
...
@@ -358,13 +358,26 @@ static ssize_t fw_get_destroy_node(struct bus_type *bus, char *buf)
}
}
static
BUS_ATTR
(
destroy_node
,
S_IWUSR
|
S_IRUGO
,
fw_get_destroy_node
,
fw_set_destroy_node
);
static
BUS_ATTR
(
destroy_node
,
S_IWUSR
|
S_IRUGO
,
fw_get_destroy_node
,
fw_set_destroy_node
);
static
int
nodemgr_rescan_bus_thread
(
void
*
__unused
)
{
/* No userlevel access needed */
daemonize
(
"kfwrescan"
);
allow_signal
(
SIGTERM
);
bus_rescan_devices
(
&
ieee1394_bus_type
);
return
0
;
}
static
ssize_t
fw_set_rescan
(
struct
bus_type
*
bus
,
const
char
*
buf
,
size_t
count
)
static
ssize_t
fw_set_rescan
(
struct
bus_type
*
bus
,
const
char
*
buf
,
size_t
count
)
{
{
int
state
=
simple_strtoul
(
buf
,
NULL
,
10
);
int
state
=
simple_strtoul
(
buf
,
NULL
,
10
);
/* Don't wait for this, or care about errors. Root could do
* something stupid and spawn this a lot of times, but that's
* root's fault. */
if
(
state
==
1
)
if
(
state
==
1
)
bus_rescan_devices
(
&
ieee1394_bus_type
);
kernel_thread
(
nodemgr_rescan_bus_thread
,
NULL
,
CLONE_KERNEL
);
return
count
;
return
count
;
}
}
...
...
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