Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 2186
b: refs/heads/master
c: 4332bdd
h: refs/heads/master
v: v3
  • Loading branch information
David Woodhouse committed May 6, 2005
1 parent 3661b49 commit 7fbe941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5ac52f33b6f05fcb91a97124155183b779a4efdf
refs/heads/master: 4332bdd332a2dca93dc3b1d017b2dd27d5c8cef3
4 changes: 2 additions & 2 deletions trunk/kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -611,13 +611,13 @@ static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
spin_unlock_irqrestore(&audit_freelist_lock, flags);

if (!ab) {
ab = kmalloc(sizeof(*ab), GFP_ATOMIC);
ab = kmalloc(sizeof(*ab), gfp_mask);
if (!ab)
goto err;
}
atomic_inc(&audit_backlog);

ab->skb = alloc_skb(AUDIT_BUFSIZ, GFP_ATOMIC);
ab->skb = alloc_skb(AUDIT_BUFSIZ, gfp_mask);
if (!ab->skb)
goto err;

Expand Down

0 comments on commit 7fbe941

Please sign in to comment.