From: Jerome Marchand Date: Wed, 30 Nov 2011 13:16:16 +0000 (+0100) Subject: Staging: zram: Add a missing GFP_KERNEL specifier in zram_init_device() X-Git-Tag: v3.3-rc1~152^2~101^2~22 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb927284e4d3a0c50a47063ff9be1fe3f5511f61;p=pandora-kernel.git Staging: zram: Add a missing GFP_KERNEL specifier in zram_init_device() 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed