diff options
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/audit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/audit.c b/kernel/audit.c index 993e445418a7..b86007da8a3f 100644 --- a/kernel/audit.c +++ b/kernel/audit.c | |||
@@ -611,13 +611,13 @@ static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx, | |||
611 | spin_unlock_irqrestore(&audit_freelist_lock, flags); | 611 | spin_unlock_irqrestore(&audit_freelist_lock, flags); |
612 | 612 | ||
613 | if (!ab) { | 613 | if (!ab) { |
614 | ab = kmalloc(sizeof(*ab), GFP_ATOMIC); | 614 | ab = kmalloc(sizeof(*ab), gfp_mask); |
615 | if (!ab) | 615 | if (!ab) |
616 | goto err; | 616 | goto err; |
617 | } | 617 | } |
618 | atomic_inc(&audit_backlog); | 618 | atomic_inc(&audit_backlog); |
619 | 619 | ||
620 | ab->skb = alloc_skb(AUDIT_BUFSIZ, GFP_ATOMIC); | 620 | ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask); |
621 | if (!ab->skb) | 621 | if (!ab->skb) |
622 | goto err; | 622 | goto err; |
623 | 623 | ||