All of lore.kernel.org
 help / color / mirror / Atom feed
* btrfs fi du ERROR
@ 2016-03-21  6:37 Martin Volf
  2016-03-21 11:19 ` Austin S. Hemmelgarn
  2016-03-21 12:25 ` Austin S. Hemmelgarn
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Volf @ 2016-03-21  6:37 UTC (permalink / raw)
  To: linux-btrfs

Hello,

I have just tried the new "btrfs fi du" command from btrfs-progs 4.5
on 4.4.6 linux kernel, and it gave me:

# btrfs fi du /bin
     Total   Exclusive  Set shared  Filename
(many lines of output for individual files, probably OK)
...
ERROR: cannot check space of '/bin': Unknown error -1

The -1 is ETXTBSY in this case:

# strace -o log btrfs fi du /bin &>/dev/null; tail log

newfstatat(3, "login", {st_mode=S_IFREG|0755, st_size=44784, ...}, 0) = 0
stat("/bin/login", {st_mode=S_IFREG|0755, st_size=44784, ...}) = 0
open("/bin/login", O_RDWR)              = -1 ETXTBSY (Text file busy)
close(3)                                = 0
write(2, "ERROR: ", 7)                  = 7
write(2, "cannot check space of '/bin': Un"..., 46) = 46
write(2, "\n", 1)                       = 1
write(1, "     Total   Exclusive  Set shar"..., 3161) = 3161
exit_group(1)                           = ?
+++ exited with 1 +++

Read-only snapshots give Unknown error -1 too, this time EROFS.

Is it expected?

-- 
Martin Volf

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

* Re: btrfs fi du ERROR
  2016-03-21  6:37 btrfs fi du ERROR Martin Volf
@ 2016-03-21 11:19 ` Austin S. Hemmelgarn
  2016-03-21 12:25 ` Austin S. Hemmelgarn
  1 sibling, 0 replies; 3+ messages in thread
From: Austin S. Hemmelgarn @ 2016-03-21 11:19 UTC (permalink / raw)
  To: Martin Volf, linux-btrfs

On 2016-03-21 02:37, Martin Volf wrote:
> Hello,
>
> I have just tried the new "btrfs fi du" command from btrfs-progs 4.5
> on 4.4.6 linux kernel, and it gave me:
>
> # btrfs fi du /bin
>       Total   Exclusive  Set shared  Filename
> (many lines of output for individual files, probably OK)
> ...
> ERROR: cannot check space of '/bin': Unknown error -1
>
> The -1 is ETXTBSY in this case:
>
> # strace -o log btrfs fi du /bin &>/dev/null; tail log
>
> newfstatat(3, "login", {st_mode=S_IFREG|0755, st_size=44784, ...}, 0) = 0
> stat("/bin/login", {st_mode=S_IFREG|0755, st_size=44784, ...}) = 0
> open("/bin/login", O_RDWR)              = -1 ETXTBSY (Text file busy)
> close(3)                                = 0
> write(2, "ERROR: ", 7)                  = 7
> write(2, "cannot check space of '/bin': Un"..., 46) = 46
> write(2, "\n", 1)                       = 1
> write(1, "     Total   Exclusive  Set shar"..., 3161) = 3161
> exit_group(1)                           = ?
> +++ exited with 1 +++
>
> Read-only snapshots give Unknown error -1 too, this time EROFS.
>
> Is it expected?
>
Given that we're apparently trying to open the file with O_RDWR, yes 
that is expected.  What's not expected is that we're opening the file 
writable...

I'll see if I can get a patch put together some time today to fix that.

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

* Re: btrfs fi du ERROR
  2016-03-21  6:37 btrfs fi du ERROR Martin Volf
  2016-03-21 11:19 ` Austin S. Hemmelgarn
@ 2016-03-21 12:25 ` Austin S. Hemmelgarn
  1 sibling, 0 replies; 3+ messages in thread
From: Austin S. Hemmelgarn @ 2016-03-21 12:25 UTC (permalink / raw)
  To: Martin Volf, linux-btrfs

On 2016-03-21 02:37, Martin Volf wrote:
> Hello,
>
> I have just tried the new "btrfs fi du" command from btrfs-progs 4.5
> on 4.4.6 linux kernel, and it gave me:
>
> # btrfs fi du /bin
>       Total   Exclusive  Set shared  Filename
> (many lines of output for individual files, probably OK)
> ...
> ERROR: cannot check space of '/bin': Unknown error -1
>
> The -1 is ETXTBSY in this case:
>
> # strace -o log btrfs fi du /bin &>/dev/null; tail log
>
> newfstatat(3, "login", {st_mode=S_IFREG|0755, st_size=44784, ...}, 0) = 0
> stat("/bin/login", {st_mode=S_IFREG|0755, st_size=44784, ...}) = 0
> open("/bin/login", O_RDWR)              = -1 ETXTBSY (Text file busy)
> close(3)                                = 0
> write(2, "ERROR: ", 7)                  = 7
> write(2, "cannot check space of '/bin': Un"..., 46) = 46
> write(2, "\n", 1)                       = 1
> write(1, "     Total   Exclusive  Set shar"..., 3161) = 3161
> exit_group(1)                           = ?
> +++ exited with 1 +++
>
> Read-only snapshots give Unknown error -1 too, this time EROFS.
>
> Is it expected?
>
Thanks for reporting this, I've sent a patch to fix it.

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

end of thread, other threads:[~2016-03-21 12:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-21  6:37 btrfs fi du ERROR Martin Volf
2016-03-21 11:19 ` Austin S. Hemmelgarn
2016-03-21 12:25 ` Austin S. Hemmelgarn

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.