linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/27] Replace the old man page with asciidoc and man page for each btrfs subcommand.
@ 2014-04-02  8:29 Qu Wenruo
  2014-04-02  8:29 ` [PATCH 01/27] btrfs-progs: Introduce asciidoc based man page and btrfs man page Qu Wenruo
                   ` (29 more replies)
  0 siblings, 30 replies; 124+ messages in thread
From: Qu Wenruo @ 2014-04-02  8:29 UTC (permalink / raw)
  To: linux-btrfs

Convert the old btrfs man pages to new asciidoc and split the huge
btrfs man page into subcommand man page.

The asciidoc style and Makefile things are mostly simplified from git
Documentation, which only supports man page output and remove html output,
since html output is somewhat overkilled for btrfs.

This huge convert and split will bring the following advantages:
1) More human-readable raw documentations.
  The roff grammar is not so easy to read, especially mixed with a lot
  of special words.

2) Easier to modify man page.
  The old huge btrfs man page makes it hard to maintain.
  It's common that some one adds some new options, but only modifies
  the detailed options but not the 'SYNOPSIS' section.

  Now, there is few duplication since btrfs man page is only a overall man
  page, details are all in its individual man page.

I hope this patchset will be the last huge change to man pages and save later
contributors time to maintain the documentations.

Qu Wenruo (27):
  btrfs-progs: Introduce asciidoc based man page and btrfs man page.
  btrfs-progs: Convert man page for btrfs-subvolume
  btrfs-progs: Convert man page for filesystem subcommand.
  btrfs-progs: Convert man page for btrfs-balance.
  btrfs-progs: Convert man page for btrfs-device subcommand.
  btrfs-progs: Convert man page for btrfs-scrub
  btrfs-progs: Convert man page for btrfs-check.
  btrfs-progs: Convert man page for btrfs-rescue
  btrfs-progs: Convert man page for btrfs-inspect-internal
  btrfs-progs: Convert man page for btrfs-send.
  btrfs-progs: Convert man page for btrfs-receive.
  btrfs-progs: Convert man page for btrfs-quota.
  btrfs-progs: Convert and enhance the man page of btrfs-qgroup.
  btrfs-progs: Convert man page for btrfs-replace.
  btrfs-progs: Convert man page for btrfs-dedup.
  btrfs-progs: Convert man page for btrfsck
  btrfs-progs: Convert man page for btrfs-convert.
  btrfs-progs: Convert man page for btrfs-debug-tree.
  btrfs-progs: Convert man page for btrfs-find-root.
  btrfs-progs: Convert man page for btrfs-image.
  btrfs-progs: Convert man page for btrfs-map-logical.
  btrfs-progs: Convert man page for btrfs-show-super.
  btrfs-progs: Convert man page for btrfstune.
  btrfs-progs: Convert man page for btrfs-zero-log
  btrfs-progs: Convert man page for fsck.btrfs.
  btrfs-progs: Convert man page for mkfs.btrfs.
  btrfs-progs: Switch to the new asciidoc Documentation.

 .gitignore                               |   1 +
 Documentation/Makefile                   |  92 +++
 Documentation/asciidoc.conf              |  42 ++
 Documentation/btrfs-balance.txt          |  77 +++
 Documentation/btrfs-check.txt            |  45 ++
 Documentation/btrfs-convert.txt          |  49 ++
 Documentation/btrfs-debug-tree.txt       |  50 ++
 Documentation/btrfs-dedup.txt            |  51 ++
 Documentation/btrfs-device.txt           |  75 +++
 Documentation/btrfs-filesystem.txt       | 163 ++++++
 Documentation/btrfs-find-root.txt        |  45 ++
 Documentation/btrfs-image.txt            |  70 +++
 Documentation/btrfs-inspect-internal.txt |  69 +++
 Documentation/btrfs-map-logical.txt      |  49 ++
 Documentation/btrfs-qgroup.txt           | 110 ++++
 Documentation/btrfs-quota.txt            |  59 ++
 Documentation/btrfs-receive.txt          |  58 ++
 Documentation/btrfs-replace.txt          |  76 +++
 Documentation/btrfs-rescue.txt           |  60 ++
 Documentation/btrfs-scrub.txt            |  98 ++++
 Documentation/btrfs-send.txt             |  60 ++
 Documentation/btrfs-show-super.txt       |  53 ++
 Documentation/btrfs-subvolume.txt        | 172 ++++++
 Documentation/btrfs-zero-log.txt         |  39 ++
 Documentation/btrfs.txt                  | 117 ++++
 Documentation/btrfsck.txt                |  55 ++
 Documentation/btrfstune.txt              |  47 ++
 Documentation/fsck.btrfs.txt             |  51 ++
 Documentation/manpage-base.xsl           |  35 ++
 Documentation/manpage-bold-literal.xsl   |  17 +
 Documentation/manpage-normal.xsl         |  13 +
 Documentation/mkfs.btrfs.txt             | 133 +++++
 Makefile                                 |   4 +-
 man/Makefile                             |  31 -
 man/btrfs-convert.8.in                   |  33 --
 man/btrfs-debug-tree.8.in                |  35 --
 man/btrfs-find-root.8.in                 |  30 -
 man/btrfs-image.8.in                     |  55 --
 man/btrfs-map-logical.8.in               |  33 --
 man/btrfs-show-super.8.in                |  30 -
 man/btrfs-zero-log.8.in                  |  23 -
 man/btrfs.8.in                           | 932 -------------------------------
 man/btrfsck.8.in                         |  29 -
 man/btrfstune.8.in                       |  31 -
 man/fsck.btrfs.8.in                      |  47 --
 man/mkfs.btrfs.8.in                      | 105 ----
 46 files changed, 2133 insertions(+), 1416 deletions(-)
 create mode 100644 Documentation/Makefile
 create mode 100644 Documentation/asciidoc.conf
 create mode 100644 Documentation/btrfs-balance.txt
 create mode 100644 Documentation/btrfs-check.txt
 create mode 100644 Documentation/btrfs-convert.txt
 create mode 100644 Documentation/btrfs-debug-tree.txt
 create mode 100644 Documentation/btrfs-dedup.txt
 create mode 100644 Documentation/btrfs-device.txt
 create mode 100644 Documentation/btrfs-filesystem.txt
 create mode 100644 Documentation/btrfs-find-root.txt
 create mode 100644 Documentation/btrfs-image.txt
 create mode 100644 Documentation/btrfs-inspect-internal.txt
 create mode 100644 Documentation/btrfs-map-logical.txt
 create mode 100644 Documentation/btrfs-qgroup.txt
 create mode 100644 Documentation/btrfs-quota.txt
 create mode 100644 Documentation/btrfs-receive.txt
 create mode 100644 Documentation/btrfs-replace.txt
 create mode 100644 Documentation/btrfs-rescue.txt
 create mode 100644 Documentation/btrfs-scrub.txt
 create mode 100644 Documentation/btrfs-send.txt
 create mode 100644 Documentation/btrfs-show-super.txt
 create mode 100644 Documentation/btrfs-subvolume.txt
 create mode 100644 Documentation/btrfs-zero-log.txt
 create mode 100644 Documentation/btrfs.txt
 create mode 100644 Documentation/btrfsck.txt
 create mode 100644 Documentation/btrfstune.txt
 create mode 100644 Documentation/fsck.btrfs.txt
 create mode 100644 Documentation/manpage-base.xsl
 create mode 100644 Documentation/manpage-bold-literal.xsl
 create mode 100644 Documentation/manpage-normal.xsl
 create mode 100644 Documentation/mkfs.btrfs.txt
 delete mode 100644 man/Makefile
 delete mode 100644 man/btrfs-convert.8.in
 delete mode 100644 man/btrfs-debug-tree.8.in
 delete mode 100644 man/btrfs-find-root.8.in
 delete mode 100644 man/btrfs-image.8.in
 delete mode 100644 man/btrfs-map-logical.8.in
 delete mode 100644 man/btrfs-show-super.8.in
 delete mode 100644 man/btrfs-zero-log.8.in
 delete mode 100644 man/btrfs.8.in
 delete mode 100644 man/btrfsck.8.in
 delete mode 100644 man/btrfstune.8.in
 delete mode 100644 man/fsck.btrfs.8.in
 delete mode 100644 man/mkfs.btrfs.8.in

-- 
1.9.1


^ permalink raw reply	[flat|nested] 124+ messages in thread
* btrfs on 3.14rc5 stuck on "btrfs_tree_read_lock           sync"
@ 2014-04-07 16:05 Marc MERLIN
  2014-04-07 16:10 ` Josef Bacik
  0 siblings, 1 reply; 124+ messages in thread
From: Marc MERLIN @ 2014-04-07 16:05 UTC (permalink / raw)
  To: linux-btrfs

I was debugging my why backup failed to run, and eventually found it was
stuck on sync:
14080       18:18 btrfs_tree_read_lock           sync

This was hung for hours on this lock.

Strangely, it looks like taking my sysrq-w hung the machine pretty hard for
close to 30sec, but this seems to have unhung sync and in the end btrfs send
completed after that.

Sysqrq-w is here:
http://marc.merlins.org/tmp/sysrq-btrfs-sync-hang.txt

Marc
-- 
"A mouse is a device used to point at the xterm you want to type in" - A.S.R.
Microsoft is to operating systems ....
                                      .... what McDonalds is to gourmet cooking
Home page: http://marc.merlins.org/  

^ permalink raw reply	[flat|nested] 124+ messages in thread
* kernel BUG at fs/btrfs/extent-tree.c:7727! with 3.17-rc3
@ 2014-09-03 17:42 Tomasz Chmielewski
  2014-09-03 12:04 ` kernel BUG at fs/btrfs/relocation.c:1065 in 3.14.16 to 3.17-rc3 Olivier Bonvalet
  2014-09-08 18:04 ` kernel BUG at fs/btrfs/extent-tree.c:7727! with 3.17-rc3 Tomasz Chmielewski
  0 siblings, 2 replies; 124+ messages in thread
From: Tomasz Chmielewski @ 2014-09-03 17:42 UTC (permalink / raw)
  To: linux-btrfs

Got the following with 3.17-rc3 and running balance (had to power cycle 
after that):

[ 1329.952600] ------------[ cut here ]------------
[ 1329.952671] WARNING: CPU: 7 PID: 3106 at fs/btrfs/extent-tree.c:876 
btrfs_lookup_extent_info+0x377/0x3eb [btrfs]()
[ 1329.952726] Modules linked in: ipt_MASQUERADE iptable_nat 
nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack 
ip_tables x_tables cpufreq_ondemand cpufreq_conservative 
cpufreq_powersave cpufreq_stats bridge stp llc ipv6 btrfs xor raid6_pq 
zlib_deflate coretemp hwmon loop parport_pc parport pcspkr i2c_i801 
tpm_infineon tpm_tis tpm i2ccore video battery lpc_ich mfd_core ehci_pci 
ehci_hcd button acpi_cpufreq ext4 crc16 jbd2 mbcache raid1 sg sd_mod 
ahci libahci libata scsi_mod r8169 mii
[ 1329.954740] CPU: 7 PID: 3106 Comm: btrfs-balance Not tainted 
3.17.0-rc3 #1
[ 1329.954789] Hardware name: System manufacturer System Product 
Name/P8H77-M PRO, BIOS 1101 02/04/2013
[ 1329.954841]  0000000000000009 ffff880733d4f8d8 ffffffff813ab092 
0000000000000000
[ 1329.955030]  0000000000000000 ffff880733d4f918 ffffffff81039b41 
ffffffff00000007
[ 1329.955219]  ffffffffa02d8560 ffff8807aa536120 0000000000000000 
0000000000000000
[ 1329.955407] Call Trace:
[ 1329.955455]  [<ffffffff813ab092>] dump_stack+0x46/0x58
[ 1329.955503]  [<ffffffff81039b41>] warn_slowpath_common+0x77/0x91
[ 1329.955610]  [<ffffffffa02d8560>] ? 
btrfs_lookup_extent_info+0x377/0x3eb [btrfs]
[ 1329.955758]  [<ffffffff81039b70>] warn_slowpath_null+0x15/0x17
[ 1329.955862]  [<ffffffffa02d8560>] 
btrfs_lookup_extent_info+0x377/0x3eb [btrfs]
[ 1329.956018]  [<ffffffffa02d8c8f>] walk_down_proc+0xc5/0x22b [btrfs]
[ 1329.956128]  [<ffffffffa02ebd20>] ? 
join_transaction.isra.30+0x24/0x309 [btrfs]
[ 1329.956285]  [<ffffffffa02dae92>] walk_down_tree+0x45/0xd5 [btrfs]
[ 1329.956391]  [<ffffffffa02dd89a>] btrfs_drop_snapshot+0x2f5/0x68f 
[btrfs]
[ 1329.956505]  [<ffffffffa032e19d>] merge_reloc_roots+0x139/0x23f 
[btrfs]
[ 1329.956617]  [<ffffffffa032e8f6>] relocate_block_group+0x466/0x4de 
[btrfs]
[ 1329.956728]  [<ffffffffa032eac6>] 
btrfs_relocate_block_group+0x158/0x278 [btrfs]
[ 1329.956890]  [<ffffffffa030b6f0>] 
btrfs_relocate_chunk.isra.62+0x58/0x5f7 [btrfs]
[ 1329.957073]  [<ffffffffa031a8d7>] ? 
btrfs_set_lock_blocking_rw+0x68/0x95 [btrfs]
[ 1329.957214]  [<ffffffffa02cbb04>] ? btrfs_set_path_blocking+0x23/0x54 
[btrfs]
[ 1329.957297]  [<ffffffffa02d0517>] ? btrfs_search_slot+0x7bc/0x816 
[btrfs]
[ 1329.957382]  [<ffffffffa0307bd5>] ? free_extent_buffer+0x6f/0x7c 
[btrfs]
[ 1329.957467]  [<ffffffffa030e5cd>] btrfs_balance+0xa7b/0xc80 [btrfs]
[ 1329.957547]  [<ffffffff813a8e15>] ? printk+0x48/0x4a
[ 1329.957629]  [<ffffffffa030e829>] balance_kthread+0x57/0x7c [btrfs]
[ 1329.957724]  [<ffffffffa030e7d2>] ? btrfs_balance+0xc80/0xc80 [btrfs]
[ 1329.957807]  [<ffffffffa030e7d2>] ? btrfs_balance+0xc80/0xc80 [btrfs]
[ 1329.957887]  [<ffffffff8104e993>] kthread+0xcd/0xd5
[ 1329.957965]  [<ffffffff8104e8c6>] ? 
kthread_freezable_should_stop+0x43/0x43
[ 1329.958045]  [<ffffffff813afcec>] ret_from_fork+0x7c/0xb0
[ 1329.958122]  [<ffffffff8104e8c6>] ? 
kthread_freezable_should_stop+0x43/0x43
[ 1329.958210] ---[ end trace a368b0643f9207e2 ]---
[ 1329.958293] ------------[ cut here ]------------
[ 1329.958378] kernel BUG at fs/btrfs/extent-tree.c:7727!
[ 1329.958455] invalid opcode: 0000 [#1] SMP
[ 1329.958593] Modules linked in: ipt_MASQUERADE iptable_nat 
nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack 
ip_tables x_tables cpufreq_ondemand cpufreq_conservative 
cpufreq_powersave cpufreq_stats bridge stp llc ipv6 btrfs xor raid6_pq 
zlib_deflate coretemp hwmon loop parport_pc parport pcspkr i2c_i801 
tpm_infineon tpm_tis tpm i2ccore video battery lpc_ich mfd_core ehci_pci 
ehci_hcd button acpi_cpufreq ext4 crc16 jbd2 mbcache raid1 sg sd_mod 
ahci libahci libata scsi_mod r8169 mii
[ 1329.960684] CPU: 7 PID: 3106 Comm: btrfs-balance Tainted: G        W  
     3.17.0-rc3 #1
[ 1329.960803] Hardware name: System manufacturer System Product 
Name/P8H77-M PRO, BIOS 1101 02/04/2013
[ 1329.960924] task: ffff8807f18c0000 ti: ffff880733d4c000 task.ti: 
ffff880733d4c000
[ 1329.961043] RIP: 0010:[<ffffffffa02d8ca6>]  [<ffffffffa02d8ca6>] 
walk_down_proc+0xdc/0x22b [btrfs]
[ 1329.961200] RSP: 0018:ffff880733d4f9e8  EFLAGS: 00010246
[ 1329.961277] RAX: 0000000000000000 RBX: 0000000000000002 RCX: 
00000000000f5a50
[ 1329.961356] RDX: 00000000000f5a4f RSI: ffff88081fbd9650 RDI: 
0000000000019650
[ 1329.961436] RBP: ffff880733d4fa38 R08: ffffea001ea94d80 R09: 
00000000000009a2
[ 1329.961515] R10: ffffffffa02cbc38 R11: 0000000000000000 R12: 
ffff8807aa536d80
[ 1329.961594] R13: ffff880733ac5600 R14: ffff880660ba65c8 R15: 
0000000000000002
[ 1329.961674] FS:  0000000000000000(0000) GS:ffff88081fbc0000(0000) 
knlGS:0000000000000000
[ 1329.961794] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 1329.961872] CR2: 00007f7fa0c3e000 CR3: 0000000001611000 CR4: 
00000000001407e0
[ 1329.961951] Stack:
[ 1329.962024]  ffff880733ac5650 ffffffffa02ebd20 ffff880732a34820 
ffff8807eb201000
[ 1329.962267]  0000000000000000 ffff8807aa536d80 0000000000000002 
ffff880732a34820
[ 1329.962510]  ffff8807eb201000 ffff880733ac5600 ffff880733d4fa98 
ffffffffa02dae92
[ 1329.962754] Call Trace:
[ 1329.962834]  [<ffffffffa02ebd20>] ? 
join_transaction.isra.30+0x24/0x309 [btrfs]
[ 1329.962957]  [<ffffffffa02dae92>] walk_down_tree+0x45/0xd5 [btrfs]
[ 1329.963040]  [<ffffffffa02dd89a>] btrfs_drop_snapshot+0x2f5/0x68f 
[btrfs]
[ 1329.963126]  [<ffffffffa032e19d>] merge_reloc_roots+0x139/0x23f 
[btrfs]
[ 1329.963210]  [<ffffffffa032e8f6>] relocate_block_group+0x466/0x4de 
[btrfs]
[ 1329.963295]  [<ffffffffa032eac6>] 
btrfs_relocate_block_group+0x158/0x278 [btrfs]
[ 1329.963419]  [<ffffffffa030b6f0>] 
btrfs_relocate_chunk.isra.62+0x58/0x5f7 [btrfs]
[ 1329.963544]  [<ffffffffa031a8d7>] ? 
btrfs_set_lock_blocking_rw+0x68/0x95 [btrfs]
[ 1329.963666]  [<ffffffffa02cbb04>] ? btrfs_set_path_blocking+0x23/0x54 
[btrfs]
[ 1329.963749]  [<ffffffffa02d0517>] ? btrfs_search_slot+0x7bc/0x816 
[btrfs]
[ 1329.963834]  [<ffffffffa0307bd5>] ? free_extent_buffer+0x6f/0x7c 
[btrfs]
[ 1329.963918]  [<ffffffffa030e5cd>] btrfs_balance+0xa7b/0xc80 [btrfs]
[ 1329.963998]  [<ffffffff813a8e15>] ? printk+0x48/0x4a
[ 1329.964080]  [<ffffffffa030e829>] balance_kthread+0x57/0x7c [btrfs]
[ 1329.964163]  [<ffffffffa030e7d2>] ? btrfs_balance+0xc80/0xc80 [btrfs]
[ 1329.964246]  [<ffffffffa030e7d2>] ? btrfs_balance+0xc80/0xc80 [btrfs]
[ 1329.964326]  [<ffffffff8104e993>] kthread+0xcd/0xd5
[ 1329.964404]  [<ffffffff8104e8c6>] ? 
kthread_freezable_should_stop+0x43/0x43
[ 1329.964484]  [<ffffffff813afcec>] ret_from_fork+0x7c/0xb0
[ 1329.964562]  [<ffffffff8104e8c6>] ? 
kthread_freezable_should_stop+0x43/0x43
[ 1329.964641] Code: b8 01 00 00 00 4c 89 f9 48 89 04 24 49 8b 16 e8 5a 
f5 ff ff 83 f8 f4 75 02 0f 0b 85 c0 0f 85 48 01 00 00 4b 83 7c fd 00 00 
75 02 <0f> 0b 41 83 bd 94 00 00 00 01 48 63 c3 75 2d 49 83 7c c5 00 01
[ 1329.966842] RIP  [<ffffffffa02d8ca6>] walk_down_proc+0xdc/0x22b 
[btrfs]
[ 1329.966956]  RSP <ffff880733d4f9e8>
[ 1329.967040] ---[ end trace a368b0643f9207e3 ]---


-- 
Tomasz Chmielewski
http://www.sslrack.com


^ permalink raw reply	[flat|nested] 124+ messages in thread

end of thread, other threads:[~2015-05-07  3:15 UTC | newest]

Thread overview: 124+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-02  8:29 [PATCH 00/27] Replace the old man page with asciidoc and man page for each btrfs subcommand Qu Wenruo
2014-04-02  8:29 ` [PATCH 01/27] btrfs-progs: Introduce asciidoc based man page and btrfs man page Qu Wenruo
2014-04-02  8:29 ` [PATCH 02/27] btrfs-progs: Convert man page for btrfs-subvolume Qu Wenruo
2014-04-02  8:29 ` [PATCH 03/27] btrfs-progs: Convert man page for filesystem subcommand Qu Wenruo
2014-04-02  8:29 ` [PATCH 04/27] btrfs-progs: Convert man page for btrfs-balance Qu Wenruo
2014-04-02  8:29 ` [PATCH 05/27] btrfs-progs: Convert man page for btrfs-device subcommand Qu Wenruo
2014-04-02  8:29 ` [PATCH 06/27] btrfs-progs: Convert man page for btrfs-scrub Qu Wenruo
2014-04-02  8:29 ` [PATCH 07/27] btrfs-progs: Convert man page for btrfs-check Qu Wenruo
2014-04-02  8:29 ` [PATCH 08/27] btrfs-progs: Convert man page for btrfs-rescue Qu Wenruo
2014-04-02  8:29 ` [PATCH 09/27] btrfs-progs: Convert man page for btrfs-inspect-internal Qu Wenruo
2014-04-02  8:29 ` [PATCH 10/27] btrfs-progs: Convert man page for btrfs-send Qu Wenruo
2014-04-02  8:29 ` [PATCH 11/27] btrfs-progs: Convert man page for btrfs-receive Qu Wenruo
2014-04-02  8:29 ` [PATCH 12/27] btrfs-progs: Convert man page for btrfs-quota Qu Wenruo
2014-04-02  8:29 ` [PATCH 13/27] btrfs-progs: Convert and enhance the man page of btrfs-qgroup Qu Wenruo
2014-04-02  8:29 ` [PATCH 14/27] btrfs-progs: Convert man page for btrfs-replace Qu Wenruo
2014-04-04 20:29   ` Marc MERLIN
2014-04-08  1:20     ` Qu Wenruo
2014-04-02  8:29 ` [PATCH 15/27] btrfs-progs: Convert man page for btrfs-dedup Qu Wenruo
2014-04-02  8:29 ` [PATCH 16/27] btrfs-progs: Convert man page for btrfsck Qu Wenruo
2014-04-02  8:29 ` [PATCH 17/27] btrfs-progs: Convert man page for btrfs-convert Qu Wenruo
2014-04-02  8:29 ` [PATCH 18/27] btrfs-progs: Convert man page for btrfs-debug-tree Qu Wenruo
2014-04-02  8:29 ` [PATCH 19/27] btrfs-progs: Convert man page for btrfs-find-root Qu Wenruo
2014-04-02  8:29 ` [PATCH 20/27] btrfs-progs: Convert man page for btrfs-image Qu Wenruo
2014-04-02  8:29 ` [PATCH 21/27] btrfs-progs: Convert man page for btrfs-map-logical Qu Wenruo
2014-04-02  8:29 ` [PATCH 22/27] btrfs-progs: Convert man page for btrfs-show-super Qu Wenruo
2014-04-02  8:29 ` [PATCH 23/27] btrfs-progs: Convert man page for btrfstune Qu Wenruo
2014-04-02  8:29 ` [PATCH 24/27] btrfs-progs: Convert man page for btrfs-zero-log Qu Wenruo
2014-04-04 18:46   ` Marc MERLIN
2014-04-05 22:00     ` cwillu
2014-04-05 22:02       ` Marc MERLIN
2014-04-05 22:03         ` Hugo Mills
2014-04-05 22:21           ` Marc MERLIN
2014-04-05 22:05         ` Marc MERLIN
2014-04-05 22:02       ` Hugo Mills
2014-04-08  1:42     ` Qu Wenruo
2014-04-11  5:54       ` Marc MERLIN
2014-04-02  8:29 ` [PATCH 25/27] btrfs-progs: Convert man page for fsck.btrfs Qu Wenruo
2014-04-02  8:29 ` [PATCH 26/27] btrfs-progs: Convert man page for mkfs.btrfs Qu Wenruo
2014-04-02  8:29 ` [PATCH 27/27] btrfs-progs: Switch to the new asciidoc Documentation Qu Wenruo
2014-04-02 13:24 ` [PATCH 00/27] Replace the old man page with asciidoc and man page for each btrfs subcommand Chris Mason
2014-04-02 14:47   ` Marc MERLIN
2014-04-03 20:33   ` Zach Brown
2014-04-02 17:29 ` David Sterba
2014-04-16 17:12 ` David Sterba
2014-04-16 17:16   ` [PATCH] btrfs-progs: doc: link btrfsck to btrfs-check David Sterba
2014-04-17  0:47     ` Qu Wenruo
2014-04-18 14:48       ` David Sterba
2014-04-30 12:14         ` WorMzy Tykashi
2014-05-05 14:57           ` David Sterba
2014-05-08  1:40         ` Qu Wenruo
2014-05-12 14:09           ` David Sterba
2014-06-03  9:38             ` WorMzy Tykashi
2014-06-03 12:19               ` David Sterba
2014-05-17 17:43   ` [PATCH 00/27] Replace the old man page with asciidoc and man page for each btrfs subcommand Hugo Mills
2014-05-17 18:22     ` Hugo Mills
2014-05-18  7:04       ` Qu Wenruo
2014-05-18 12:05         ` Hugo Mills
2014-05-18 16:02           ` Brendan Hide
2014-05-19  0:35           ` Qu Wenruo
2014-05-18  6:51     ` Qu Wenruo
2014-05-18 10:10       ` Hugo Mills
2014-05-19 13:02     ` Chris Mason
2014-05-19 14:01     ` David Sterba
2014-05-19 14:33       ` David Sterba
2014-05-20  0:34         ` Qu Wenruo
2014-05-20 11:08           ` David Sterba
2014-04-07 16:05 btrfs on 3.14rc5 stuck on "btrfs_tree_read_lock sync" Marc MERLIN
2014-04-07 16:10 ` Josef Bacik
2014-04-07 18:51   ` Marc MERLIN
2014-04-07 19:32     ` Chris Mason
2014-04-07 20:00       ` Marc MERLIN
2014-04-09 17:38         ` Marc MERLIN
2014-03-25  1:49           ` How to debug very very slow file delete? Marc MERLIN
2014-03-25 12:13             ` How to debug very very slow file delete? (btrfs on md-raid5) Martin
2014-03-25 13:57               ` Xavier Nicollet
2014-03-25 16:41               ` Marc MERLIN
2014-04-10 17:07                 ` How to debug very very slow file delete? (btrfs on md-raid5 with many files, 70GB metadata) Marc MERLIN
2014-04-11 14:15                 ` How to debug very very slow file delete? (btrfs on md-raid5) Chris Samuel
2014-04-11 17:23                   ` Marc MERLIN
2014-04-11 18:00                     ` Duncan
2014-04-11 19:15                     ` Roman Mamedov
2014-04-12 20:25             ` very slow btrfs filesystem: any data needed before I wipe it? Marc MERLIN
2014-04-13  4:02               ` Duncan
2014-04-14  1:43                 ` Marc MERLIN
2014-04-14 10:28                   ` Duncan
2014-04-16 22:35                     ` Marc MERLIN
2014-04-13 14:57               ` Marc MERLIN
2014-04-13 16:59                 ` what does your btrfsck look like? Marc MERLIN
2014-04-14  2:15             ` How to debug very very slow file delete? Liu Bo
2014-04-14  2:21               ` Liu Bo
2014-06-09 23:40         ` btrfs balance crash BUG ON fs/btrfs/relocation.c:1062 or RIP build_backref_tree+0x9fc/0xcc4 Marc MERLIN
2014-06-10  0:32           ` Russell Coker
2014-06-10  4:58             ` Marc MERLIN
2014-06-14 16:21           ` Marc MERLIN
2014-06-17 18:29           ` Josef Bacik
2014-06-17 18:55             ` Marc MERLIN
2014-06-18 15:26               ` Josef Bacik
2014-06-18 20:21                 ` Marc MERLIN
2014-06-19 16:12                   ` Josef Bacik
2014-06-19 22:25                     ` Marc MERLIN
2014-06-19 22:50                       ` Josef Bacik
2014-06-20  0:53                         ` Marc MERLIN
2014-06-20 15:40                           ` Josef Bacik
2014-06-25 19:40                             ` Marc MERLIN
2014-06-25 21:05                               ` Josef Bacik
2015-05-05 21:02           ` 3.19.6: __btrfs_free_extent:5987: errno=-2 No such entry, did btrfs check --repair break it? Marc MERLIN
2015-05-06 11:04             ` Duncan
2015-05-06 17:25               ` Chris Murphy
2015-05-07  3:15                 ` Duncan
2015-05-06 17:49               ` Marc MERLIN
2014-09-03 17:42 kernel BUG at fs/btrfs/extent-tree.c:7727! with 3.17-rc3 Tomasz Chmielewski
2014-09-03 12:04 ` kernel BUG at fs/btrfs/relocation.c:1065 in 3.14.16 to 3.17-rc3 Olivier Bonvalet
2014-09-29 14:13   ` Liu Bo
     [not found]   ` <20140824000720.GN3875@merlins.org>
     [not found]     ` <20140926214821.GX13219@merlins.org>
     [not found]       ` <20150502141102.GB1809@merlins.org>
     [not found]         ` <20150501210013.GH13624@merlins.org>
2015-04-29 23:21           ` 3.19.3, btrfs send/receive error: failed to clone extents Marc MERLIN
2015-05-02 16:30             ` 3.19.3: check tree block failed + WARNING: device 0 not present on scrub Marc MERLIN
2015-05-02 16:50               ` Christian Dysthe
2015-05-02 17:05                 ` Marc MERLIN
2015-05-02 17:20                   ` Christian Dysthe
2015-05-02 17:29                     ` Marc MERLIN
2015-05-02 18:56                       ` Christian Dysthe
2015-05-05  6:32               ` Marc MERLIN
2015-05-05 19:56                 ` 3.19.6: __btrfs_free_extent:5987: errno=-2 No such entry Marc MERLIN
2014-09-08 18:04 ` kernel BUG at fs/btrfs/extent-tree.c:7727! with 3.17-rc3 Tomasz Chmielewski
2014-10-04  1:19   ` Tomasz Chmielewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).