From: Jiang Liu Date: Thu, 6 Jun 2013 16:07:28 +0000 (+0800) Subject: zram: simplify and optimize dev_to_zram() X-Git-Tag: v3.11-rc1~158^2~224 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80de574dca050b734d8413a98a983fba3d06240b;p=thirdparty%2Fkernel%2Flinux.git zram: simplify and optimize dev_to_zram() Simplify and optimize dev_to_zram() without walking the zram_devices array. Signed-off-by: Jiang Liu Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/zram/zram_sysfs.c b/drivers/staging/zram/zram_sysfs.c index dc76a3dba1b8d..e239d94527260 100644 --- a/drivers/staging/zram/zram_sysfs.c +++ b/drivers/staging/zram/zram_sysfs.c @@ -30,18 +30,9 @@ static u64 zram_stat64_read(struct zram *zram, u64 *v) return val; } -static struct zram *dev_to_zram(struct device *dev) +static inline struct zram *dev_to_zram(struct device *dev) { - int i; - struct zram *zram = NULL; - - for (i = 0; i < zram_get_num_devices(); i++) { - zram = &zram_devices[i]; - if (disk_to_dev(zram->disk) == dev) - break; - } - - return zram; + return (struct zram *)dev_to_disk(dev)->private_data; } static ssize_t disksize_show(struct device *dev,