ext4: missing unlock in ext4_clear_request_list()

If the the li_request_list was empty then it returned with the lock
held. Instead of adding a "goto unlock" I just removed that special
case and let it go past the empty list_for_each_safe().

Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>

authored by Dan Carpenter and committed by Theodore Ts'o f4c8cc65 08da1193

-3
-3
fs/ext4/super.c
··· 2799 struct ext4_li_request *elr; 2800 2801 mutex_lock(&ext4_li_info->li_list_mtx); 2802 - if (list_empty(&ext4_li_info->li_request_list)) 2803 - return; 2804 - 2805 list_for_each_safe(pos, n, &ext4_li_info->li_request_list) { 2806 elr = list_entry(pos, struct ext4_li_request, 2807 lr_request);
··· 2799 struct ext4_li_request *elr; 2800 2801 mutex_lock(&ext4_li_info->li_list_mtx); 2802 list_for_each_safe(pos, n, &ext4_li_info->li_request_list) { 2803 elr = list_entry(pos, struct ext4_li_request, 2804 lr_request);