Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
c7f743a6
Commit
c7f743a6
authored
Feb 01, 2007
by
Sean Hefty
Committed by
Roland Dreier
Feb 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IB: Remove redundant "_wq" from workqueue names
Signed-off-by:
Roland Dreier
<
rolandd@cisco.com
>
parent
aedec080
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
drivers/infiniband/core/addr.c
drivers/infiniband/core/addr.c
+1
-1
drivers/infiniband/core/cma.c
drivers/infiniband/core/cma.c
+1
-1
No files found.
drivers/infiniband/core/addr.c
View file @
c7f743a6
...
...
@@ -373,7 +373,7 @@ static struct notifier_block nb = {
static
int
addr_init
(
void
)
{
addr_wq
=
create_singlethread_workqueue
(
"ib_addr
_wq
"
);
addr_wq
=
create_singlethread_workqueue
(
"ib_addr"
);
if
(
!
addr_wq
)
return
-
ENOMEM
;
...
...
drivers/infiniband/core/cma.c
View file @
c7f743a6
...
...
@@ -2494,7 +2494,7 @@ static int cma_init(void)
next_port
=
(
next_port
%
(
sysctl_local_port_range
[
1
]
-
sysctl_local_port_range
[
0
]))
+
sysctl_local_port_range
[
0
];
cma_wq
=
create_singlethread_workqueue
(
"rdma_cm
_wq
"
);
cma_wq
=
create_singlethread_workqueue
(
"rdma_cm"
);
if
(
!
cma_wq
)
return
-
ENOMEM
;
...
...
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