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
8669aafd
Commit
8669aafd
authored
Mar 18, 2006
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix double-free in blk_init_queue_node()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
afc847b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
block/ll_rw_blk.c
block/ll_rw_blk.c
+5
-5
No files found.
block/ll_rw_blk.c
View file @
8669aafd
...
@@ -1854,8 +1854,10 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
...
@@ -1854,8 +1854,10 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
return
NULL
;
return
NULL
;
q
->
node
=
node_id
;
q
->
node
=
node_id
;
if
(
blk_init_free_list
(
q
))
if
(
blk_init_free_list
(
q
))
{
goto
out_init
;
kmem_cache_free
(
requestq_cachep
,
q
);
return
NULL
;
}
/*
/*
* if caller didn't supply a lock, they get per-queue locking with
* if caller didn't supply a lock, they get per-queue locking with
...
@@ -1891,9 +1893,7 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
...
@@ -1891,9 +1893,7 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
return
q
;
return
q
;
}
}
blk_cleanup_queue
(
q
);
blk_put_queue
(
q
);
out_init:
kmem_cache_free
(
requestq_cachep
,
q
);
return
NULL
;
return
NULL
;
}
}
EXPORT_SYMBOL
(
blk_init_queue_node
);
EXPORT_SYMBOL
(
blk_init_queue_node
);
...
...
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