Loading fs/f2fs/node.c +3 −4 Original line number Diff line number Diff line Loading @@ -1195,15 +1195,14 @@ const struct address_space_operations f2fs_node_aops = { static struct free_nid *__lookup_free_nid_list(nid_t n, struct list_head *head) { struct list_head *this; struct free_nid *i = NULL; struct free_nid *i; list_for_each(this, head) { i = list_entry(this, struct free_nid, list); if (i->nid == n) break; i = NULL; } return i; } return NULL; } static void __del_from_free_nid_list(struct free_nid *i) { Loading Loading
fs/f2fs/node.c +3 −4 Original line number Diff line number Diff line Loading @@ -1195,15 +1195,14 @@ const struct address_space_operations f2fs_node_aops = { static struct free_nid *__lookup_free_nid_list(nid_t n, struct list_head *head) { struct list_head *this; struct free_nid *i = NULL; struct free_nid *i; list_for_each(this, head) { i = list_entry(this, struct free_nid, list); if (i->nid == n) break; i = NULL; } return i; } return NULL; } static void __del_from_free_nid_list(struct free_nid *i) { Loading