Re: [BUG REPORT] Kernel panic on 3.9.0-rc7-4-gbb33db7

2013-04-18 Thread Wanlong Gao
ay without the new TP. Thank you for investigating this. And sorry for my incompleted panic picture before that let you detour. :-( Regards, Wanlong Gao > > Thanks. > -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message

Re: [PATCH 3.0-rc7] btrfs: Update git repository links for btrfs utilities in Documentation/filesystems/btrfs.txt

2011-07-17 Thread Wanlong Gao
se include the following tools: -- Thanks Best Regards Wanlong Gao -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] Btrfs:don't check the return value of __btrfs_add_inode_defrag

2011-07-18 Thread Wanlong Gao
Don't need to check the return value of __btrfs_add_inode_defrag(), since it will always return 0. Signed-off-by: Wanlong Gao --- fs/btrfs/file.c | 11 +-- 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c index fa4ef18..4a6d190 1

[PATCH] btrfs:make btrfs_init_compress() return void

2011-08-22 Thread Wanlong Gao
From: Wanlong Gao Make btrfs_init_compress() return void, since it always return 0, and no need to check return value. Signed-off-by: Wanlong Gao --- fs/btrfs/compression.c |3 +-- fs/btrfs/compression.h |2 +- fs/btrfs/super.c |7 ++- 3 files changed, 4 insertions(+), 8

[PATCH] btrfs:make close_ctree() return void

2011-08-22 Thread Wanlong Gao
From: Wanlong Gao Make close_ctree() return void since it always return 0, and fix the return value of btrfs_put_super() to consistent with VFS. Signed-off-by: Wanlong Gao --- fs/btrfs/disk-io.c |4 +--- fs/btrfs/disk-io.h |2 +- fs/btrfs/super.c |5 + 3 files changed, 3

Re: [PATCH] btrfs:make btrfs_init_compress() return void

2011-08-22 Thread Wanlong Gao
On 08/23/2011 07:43 AM, Tsutomu Itoh wrote: (2011/08/22 23:22), Wanlong Gao wrote: From: Wanlong Gao Make btrfs_init_compress() return void, since it always return 0, and no need to check return value. Signed-off-by: Wanlong Gao --- fs/btrfs/compression.c |3 +-- fs/btrfs/compression.h

[PATCH v2] btrfs:make btrfs_init_compress() return void

2011-08-22 Thread Wanlong Gao
Make btrfs_init_compress() return void, since it always return 0, and no need to check return value. Signed-off-by: Wanlong Gao --- fs/btrfs/compression.c |3 +-- fs/btrfs/compression.h |2 +- fs/btrfs/super.c |7 +++ 3 files changed, 5 insertions(+), 7 deletions(-) diff