]> git.ipfire.org Git - people/ms/linux.git/blobdiff - drivers/virtio/virtio_ring.c
virtio: Do not drop __GFP_HIGH in alloc_indirect
[people/ms/linux.git] / drivers / virtio / virtio_ring.c
index 096b857e7b75abad526f487c84392d863c3c6b06..abdb341887f501d9f501e58069080e8006ec14f9 100644 (file)
@@ -109,7 +109,7 @@ static struct vring_desc *alloc_indirect(struct virtqueue *_vq,
         * otherwise virt_to_phys will give us bogus addresses in the
         * virtqueue.
         */
-       gfp &= ~(__GFP_HIGHMEM | __GFP_HIGH);
+       gfp &= ~__GFP_HIGHMEM;
 
        desc = kmalloc(total_sg * sizeof(struct vring_desc), gfp);
        if (!desc)