search for: cmd_logical_resolve

Displaying 2 results from an estimated 2 matches for "cmd_logical_resolve".

2012 Aug 31
0
[PATCH v3] Btrfs-progs: add options to change bufsize in logical to inode translation
...btrfs.8.in | 7 +++++-- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/cmds-inspect.c b/cmds-inspect.c index 2f0228f..42f16fc 100644 --- a/cmds-inspect.c +++ b/cmds-inspect.c @@ -115,8 +115,13 @@ static int cmd_inode_resolve(int argc, char **argv) } static const char * const cmd_logical_resolve_usage[] = { - "btrfs inspect-internal logical-resolve [-Pv] <logical> <path>", + "btrfs inspect-internal logical-resolve [-Pv] [-s bufsize] <logical> <path>", "Get file system paths for the given logical address", + "-P skip the...
2012 Nov 15
0
[PATCH] btrfs-progs: fix 32bit int/pointer cast warnings
This uses uintptr_t to cast pointers to u64 ioctl arguments to silence some 32bit build warnings: cmds-inspect.c: In function ‘__ino_to_path_fd’: cmds-inspect.c:47:15: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] cmds-inspect.c: In function ‘cmd_logical_resolve’: cmds-inspect.c:171:15: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast] Signed-off-by: Zach Brown <zab@redhat.com> --- cmds-inspect.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmds-inspect.c b/cmds-inspect.c index edabff5..25b8...