Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53200761 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "zram: Fix compilation warning due to print format mismatch"

parents 14aa11a8 6a93c50f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -68,11 +68,13 @@ static int zram_show_mem_notifier(struct notifier_block *nb,

		if (zram->init_done) {
			u64 val;
			u64 data_size;

			val = zs_get_total_size_bytes(meta->mem_pool);
			data_size = atomic64_read(&zram->stats.compr_size);
			pr_info("Zram[%d] mem_used_total = %llu\n", i, val);
			pr_info("Zram[%d] compr_data_size = %llu\n", i,
				atomic64_read(&zram->stats.compr_size));
				(unsigned long long)data_size);
			pr_info("Zram[%d] orig_data_size = %u\n", i,
				zram->stats.pages_stored);
		}