Just use the macro instead of define a variable.
Cc: James E.J. Bottomley <jbottom...@parallels.com> Cc: Paolo Bonzini <pbonz...@redhat.com> Cc: Rusty Russell <ru...@rustcorp.com.au> Cc: linux-s...@vger.kernel.org Cc: k...@vger.kernel.org Signed-off-by: Wanlong Gao <gaowanl...@cn.fujitsu.com> --- drivers/scsi/virtio_scsi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/scsi/virtio_scsi.c b/drivers/scsi/virtio_scsi.c index 8746c37..5390229 100644 --- a/drivers/scsi/virtio_scsi.c +++ b/drivers/scsi/virtio_scsi.c @@ -587,11 +587,10 @@ static struct virtio_scsi_target_state *virtscsi_alloc_tgt( struct virtio_device *vdev, int sg_elems) { struct virtio_scsi_target_state *tgt; - gfp_t gfp_mask = GFP_KERNEL; /* We need extra sg elements at head and tail. */ tgt = kmalloc(sizeof(*tgt) + sizeof(tgt->sg[0]) * (sg_elems + 2), - gfp_mask); + GFP_KERNEL); if (!tgt) return NULL; -- 1.8.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/