Skip to content

Commit b749cb0

Browse files
Dan Carpenterakpm00
authored andcommitted
mm/zswap: fix a white space issue
We accidentally deleted a tab in commit f84152e ("mm/zswap: use only one pool in zswap"). Add it back. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Dan Carpenter <[email protected]> Reviewed-by: Chengming Zhou <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 1390a33 commit b749cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mm/zswap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ static void zswap_entry_free(struct zswap_entry *entry)
803803
atomic_dec(&zswap_same_filled_pages);
804804
else {
805805
zswap_lru_del(&zswap_list_lru, entry);
806-
zpool_free(entry->pool->zpool, entry->handle);
806+
zpool_free(entry->pool->zpool, entry->handle);
807807
zswap_pool_put(entry->pool);
808808
}
809809
if (entry->objcg) {

0 commit comments

Comments
 (0)