Commit 6babc5c1 authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by Cyrill Gorcunov

files: Show file ID in -s output

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
parent f899d040
...@@ -79,8 +79,8 @@ static void show_files(int fd_files) ...@@ -79,8 +79,8 @@ static void show_files(int fd_files)
if (!ret) if (!ret)
goto out; goto out;
pr_info("type: %02x len: %02x flags: %4x pos: %8x addr: %16lx", pr_info("type: %02x len: %02x flags: %4x pos: %8x addr: %16lx id: %s",
e.type, e.len, e.flags, e.pos, e.addr); e.type, e.len, e.flags, e.pos, e.addr, e.id);
if (e.len) { if (e.len) {
int ret = read(fd_files, local_buf, e.len); int ret = read(fd_files, local_buf, e.len);
......
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