diff options
Diffstat (limited to 'arch/um/drivers')
-rw-r--r-- | arch/um/drivers/pcap_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/pcap_user.c b/arch/um/drivers/pcap_user.c index 483aa15222a4..1316456e2a28 100644 --- a/arch/um/drivers/pcap_user.c +++ b/arch/um/drivers/pcap_user.c | |||
@@ -53,7 +53,7 @@ static int pcap_open(void *data) | |||
53 | return -EIO; | 53 | return -EIO; |
54 | } | 54 | } |
55 | 55 | ||
56 | pri->compiled = um_kmalloc(sizeof(struct bpf_program)); | 56 | pri->compiled = kmalloc(sizeof(struct bpf_program), UM_GFP_KERNEL); |
57 | if(pri->compiled == NULL){ | 57 | if(pri->compiled == NULL){ |
58 | printk(UM_KERN_ERR "pcap_open : kmalloc failed\n"); | 58 | printk(UM_KERN_ERR "pcap_open : kmalloc failed\n"); |
59 | return -ENOMEM; | 59 | return -ENOMEM; |