Staging: zram: Add a missing GFP_KERNEL specifier in zram_init_device()
authorJerome Marchand <jmarchan@redhat.com>
Wed, 30 Nov 2011 13:16:16 +0000 (14:16 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 8 Dec 2011 22:59:48 +0000 (14:59 -0800)
The allocation of zram->compress_buffer is misssing a GFP_* specifier.
This is equivalent to GFP_NOWAIT but it is more likely a omission.
Since the allocation just above it uses GFP_KERNEL, there is no reason
to use GFP_NOWAIT here. Therefore, add GFP_KERNEL.

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

No differences found