Commit 736b2f77 authored by Andreas Gruenbacher's avatar Andreas Gruenbacher

gfs2: Un-obfuscate function jdesc_find_i

Clean up this function to show that it is trivial.
Signed-off-by: default avatarAndreas Gruenbacher <agruenba@redhat.com>
parent 19c329f6
......@@ -81,19 +81,12 @@ void gfs2_jindex_free(struct gfs2_sbd *sdp)
static struct gfs2_jdesc *jdesc_find_i(struct list_head *head, unsigned int jid)
{
struct gfs2_jdesc *jd;
int found = 0;
list_for_each_entry(jd, head, jd_list) {
if (jd->jd_jid == jid) {
found = 1;
break;
}
if (jd->jd_jid == jid)
return jd;
}
if (!found)
jd = NULL;
return jd;
return NULL;
}
struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment