You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
f2fs: optimize and change return path in lookup_free_nid_list
Optimize and change return path in lookup_free_nid_list Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Amit Sahrawat <a.sahrawat@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
+3
-4
@@ -1195,14 +1195,13 @@ const struct address_space_operations f2fs_node_aops = {
|
|||||||
static struct free_nid *__lookup_free_nid_list(nid_t n, struct list_head *head)
|
static struct free_nid *__lookup_free_nid_list(nid_t n, struct list_head *head)
|
||||||
{
|
{
|
||||||
struct list_head *this;
|
struct list_head *this;
|
||||||
struct free_nid *i = NULL;
|
struct free_nid *i;
|
||||||
list_for_each(this, head) {
|
list_for_each(this, head) {
|
||||||
i = list_entry(this, struct free_nid, list);
|
i = list_entry(this, struct free_nid, list);
|
||||||
if (i->nid == n)
|
if (i->nid == n)
|
||||||
break;
|
return i;
|
||||||
i = NULL;
|
|
||||||
}
|
}
|
||||||
return i;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __del_from_free_nid_list(struct free_nid *i)
|
static void __del_from_free_nid_list(struct free_nid *i)
|
||||||
|
|||||||
Reference in New Issue
Block a user