]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
zram: Fix sparse warnings
authorNitin Gupta <ngupta@vflare.org>
Fri, 9 Sep 2011 23:01:00 +0000 (19:01 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 9 Sep 2011 23:09:50 +0000 (16:09 -0700)
Fixes sparse warning:
zram_drv.c:666:6: warning: symbol 'zram_slot_free_notify' was not
declared. Should it be static?

Also, max_zpage_size is now size_t just to be consistent with data-type
of other variables maintaining sizes of various kinds.

Signed-off-by: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/zram/zram_drv.c
drivers/staging/zram/zram_drv.h

index dbb436863e7f6e1f9183791211918b2563f1c6ca..b9926ee0052c37bc5d6f68cada276f010ea6bad9 100644 (file)
@@ -697,7 +697,8 @@ fail:
        return ret;
 }
 
-void zram_slot_free_notify(struct block_device *bdev, unsigned long index)
+static void zram_slot_free_notify(struct block_device *bdev,
+                               unsigned long index)
 {
        struct zram *zram;
 
index 7fdeb7d39ae91b4993983761255f758fbf18e52d..e5cd2469b6a088e034c1dea8c098dd8fd3463313 100644 (file)
@@ -47,7 +47,7 @@ static const unsigned default_disksize_perc_ram = 25;
  * Pages that compress to size greater than this are stored
  * uncompressed in memory.
  */
-static const unsigned max_zpage_size = PAGE_SIZE / 4 * 3;
+static const size_t max_zpage_size = PAGE_SIZE / 4 * 3;
 
 /*
  * NOTE: max_zpage_size must be less than or equal to: