mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
[PATCH] slab: remove SLAB_ATOMIC
SLAB_ATOMIC is an alias of GFP_ATOMIC Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f7267c0c07
commit
54e6ecb239
55 changed files with 107 additions and 108 deletions
|
@ -60,7 +60,7 @@ struct request_sock {
|
|||
|
||||
static inline struct request_sock *reqsk_alloc(const struct request_sock_ops *ops)
|
||||
{
|
||||
struct request_sock *req = kmem_cache_alloc(ops->slab, SLAB_ATOMIC);
|
||||
struct request_sock *req = kmem_cache_alloc(ops->slab, GFP_ATOMIC);
|
||||
|
||||
if (req != NULL)
|
||||
req->rsk_ops = ops;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue