Commit 2464ad08 authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

locks: print a lock before reporting an error about it

Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 2ef8b45d
......@@ -1554,6 +1554,11 @@ int parse_file_locks(void)
continue;
}
pr_info("lockinfo: %lld:%d %x %d %02x:%02x:%ld %lld %s\n",
fl->fl_id, fl->fl_kind, fl->fl_ltype,
fl->fl_owner, fl->maj, fl->min, fl->i_no,
fl->start, fl->end);
if (is_blocked) {
/*
* Here the task is in the pstree.
......@@ -1569,11 +1574,6 @@ int parse_file_locks(void)
goto err;
}
pr_info("lockinfo: %lld:%d %x %d %02x:%02x:%ld %lld %s\n",
fl->fl_id, fl->fl_kind, fl->fl_ltype,
fl->fl_owner, fl->maj, fl->min, fl->i_no,
fl->start, fl->end);
list_add_tail(&fl->list, &file_lock_list);
}
......
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