mm/compaction: remove unnecessary return for void function

Remove unnecessary return for void function

Link: https://lkml.kernel.org/r/20230804110454.2935878-8-shikemeng@huaweicloud.com
Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Mel Gorman <mgorman@techsingularity.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
Kemeng Shi 2023-08-04 19:04:53 +08:00 committed by Andrew Morton
parent c3750cc772
commit f82024cbfa
1 changed files with 1 additions and 3 deletions

View File

@ -1444,8 +1444,6 @@ fast_isolate_around(struct compact_control *cc, unsigned long pfn)
/* Skip this pageblock in the future as it's full or nearly full */
if (start_pfn == end_pfn)
set_pageblock_skip(page);
return;
}
/* Search orders in round-robin fashion */
@ -2898,7 +2896,7 @@ int compaction_register_node(struct node *node)
void compaction_unregister_node(struct node *node)
{
return device_remove_file(&node->dev, &dev_attr_compact);
device_remove_file(&node->dev, &dev_attr_compact);
}
#endif /* CONFIG_SYSFS && CONFIG_NUMA */