Re: "WARNING: device 0 not present" during scrub?

2016-03-02 Thread Nils Steinger
o exit status if it succeeds. Non zero > is returned in case of failure. Regards, Nils Steinger signature.asc Description: OpenPGP digital signature

btrfs send reproducibly fails for a specific subvolume after sending 15 GiB, scrub reports no errors

2015-11-22 Thread Nils Steinger
e this kind of error? And is there a way to fix it, preferably without recreating the FS? Regards, Nils Steinger signature.asc Description: OpenPGP digital signature

Re: btrfs send reproducibly fails for a specific subvolume after sending 15 GiB, scrub reports no errors

2015-11-23 Thread Nils Steinger
On Mon, Nov 23, 2015 at 05:49:05AM +, Duncan wrote: > Btrfs scrub? Why do you believe it will detect/fix the problem? I was under the impression that btrfs scrub would detect all kinds of inconsistencies (not just data-checksum mismatches), including whatever caused btrfs send to fail. Thanks

[PATCH] btrfs-progs: Add uninstall targets to Makefiles.

2014-06-20 Thread Nils Steinger
Signed-off-by: Nils Steinger --- Documentation/Makefile | 4 Makefile | 9 + 2 files changed, 13 insertions(+) diff --git a/Documentation/Makefile b/Documentation/Makefile index 45299bb..5c9780b 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -76,6

[PATCH] btrfs-progs: Add uninstall targets to Makefiles

2014-06-20 Thread Nils Steinger
changes made by 'install' (both in the main and Documentation Makefiles). Nils Steinger (1): btrfs-progs: Add uninstall targets to Makefiles. Documentation/Makefile | 4 Makefile | 9 + 2 files changed, 13 insertions(+) -- 1.9.1 -- To unsubscribe from th

[PATCH v2] btrfs-progs: Add uninstall targets to Makefiles.

2014-06-22 Thread Nils Steinger
Signed-off-by: Nils Steinger --- v2: As Satoru Takeuchi pointed out, I forgot to remove $(libs) in the main Makefile. Documentation/Makefile | 4 Makefile | 9 + 2 files changed, 13 insertions(+) diff --git a/Documentation/Makefile b/Documentation/Makefile index

Re: [PATCH v2] btrfs-progs: Add uninstall targets to Makefiles.

2014-06-25 Thread Nils Steinger
On Mon, Jun 23, 2014 at 05:04:42PM +0200, David Sterba wrote: > On Mon, Jun 23, 2014 at 04:23:48AM +0200, Nils Steinger wrote: > > + rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(man8dir) > > > + rmdir -p --ignore-fail-on-non-empty $(DESTDIR)$(libdir) > > > +

Re: [PATCH v2] btrfs-progs: Add uninstall targets to Makefiles.

2014-07-25 Thread Nils Steinger
I apologize for the long hiatus. On Fri, Jun 27, 2014 at 02:32:01PM +0200, David Sterba wrote: > On Wed, Jun 25, 2014 at 09:40:40PM +0200, Nils Steinger wrote: > > On my system, man8dir didn't exist prior to the installation, so I > > thought it would be reasonable to hav

[PATCH] Options to set fixed unit for `filesystem df`

2014-08-14 Thread Nils Steinger
d -g to get the output in bytes, kibi-, mebi-, and gibibytes respectively. Nils Steinger (1): Add options to use a fixed unit for `filesystem df` instead of determining it automatically. cmds-filesystem.c | 62 --- utils.c

[PATCH] Add options to use a fixed unit for `filesystem df` instead of determining it automatically.

2014-08-14 Thread Nils Steinger
The automatic unit selection makes parsing the output of `filesystem df` unnecessarily difficult. Using the new options -b, -k, -m, and -g, the output unit can be set to bytes, kibi-, mebi-, and gibibytes respectively. Signed-off-by: Nils Steinger --- cmds-filesystem.c | 62

[PATCH v3] btrfs-progs: Add uninstall targets to Makefiles.

2014-08-14 Thread Nils Steinger
nother try for the Makefile patch. Nils Steinger (1): btrfs-progs: Add uninstall targets to Makefiles. Documentation/Makefile | 4 Makefile | 7 +++ 2 files changed, 11 insertions(+) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs&

[PATCH v3] btrfs-progs: Add uninstall targets to Makefiles.

2014-08-14 Thread Nils Steinger
Signed-off-by: Nils Steinger --- v2: As Satoru Takeuchi pointed out, I forgot to remove $(libs) in the main Makefile. v3: David Sterba suggested not to remove the $(bindir) and $(libdir), since those might be needed by other programs, even if the btrfs uninstallation leaves them empty

[PATCH v2] Options to set fixed unit for `filesystem df`

2014-08-14 Thread Nils Steinger
I forgot to add the new options to man page for btrfs-filesystem. While adding them, I also noticed that the man page contained a "[...]" placeholder even though the code for df only accepts a single path, so I removed the placeholder. Nils Steinger (1): Add options to use a fixe

[PATCH v2] Add options to use a fixed unit for `filesystem df` instead of determining it automatically.

2014-08-14 Thread Nils Steinger
The automatic unit selection makes parsing the output of `filesystem df` unnecessarily difficult. Using the new options -b, -k, -m, and -g, the output unit can be set to bytes, kibi-, mebi-, and gibibytes respectively. Signed-off-by: Nils Steinger --- v2: Add options to btrfs-filesystem man