Skip to content

Commit

Permalink
mm: frontswap: trivial coding convention issues
Browse files Browse the repository at this point in the history
Reviewed-by: Minchan Kim <[email protected]>
Signed-off-by: Sasha Levin <[email protected]>
Signed-off-by: Konrad Rzeszutek Wilk <[email protected]>
  • Loading branch information
sashalevin authored and konradwilk committed Jun 11, 2012
1 parent ef38359 commit 4bb3e31
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mm/frontswap.c
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ int __frontswap_store(struct page *page)
frontswap_clear(sis, offset);
atomic_dec(&sis->frontswap_pages);
inc_frontswap_failed_stores();
} else
} else {
inc_frontswap_failed_stores();
}
if (frontswap_writethrough_enabled)
/* report failure so swap also writes to swap device */
ret = -1;
Expand Down Expand Up @@ -250,9 +251,9 @@ void frontswap_shrink(unsigned long target_pages)
for (type = swap_list.head; type >= 0; type = si->next) {
si = swap_info[type];
si_frontswap_pages = atomic_read(&si->frontswap_pages);
if (total_pages_to_unuse < si_frontswap_pages)
if (total_pages_to_unuse < si_frontswap_pages) {
pages = pages_to_unuse = total_pages_to_unuse;
else {
} else {
pages = si_frontswap_pages;
pages_to_unuse = 0; /* unuse all */
}
Expand Down

0 comments on commit 4bb3e31

Please sign in to comment.