emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#12356: closed (tail doesn't know vzfs)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#12356: closed (tail doesn't know vzfs)
Date: Wed, 05 Sep 2012 20:44:01 +0000

Your message dated Wed, 05 Sep 2012 22:42:50 +0200
with message-id <address@hidden>
and subject line Re: bug#12356: tail doesn't know vzfs
has caused the debbugs.gnu.org bug report #12356,
regarding tail doesn't know vzfs
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
12356: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12356
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: tail doesn't know vzfs Date: Wed, 05 Sep 2012 14:12:46 +0200 User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.7; de; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2
tail: unrecognized file system type 0x565a4653 for ‘/var/log/messages’.
please report this to address@hidden reverting to polling

# mount
/dev/vzfs on / type vzfs (rw,relatime)

This is a container running on Parallels Virtuozzo 4.6, might also
affect OpenVZ.

Yours,
Jens




--- End Message ---
--- Begin Message --- Subject: Re: bug#12356: tail doesn't know vzfs Date: Wed, 05 Sep 2012 22:42:50 +0200
Jens Rosenboom wrote:

> tail: unrecognized file system type 0x565a4653 for ‘/var/log/messages’.
> please report this to address@hidden reverting to polling
>
> # mount
> /dev/vzfs on / type vzfs (rw,relatime)
>
> This is a container running on Parallels Virtuozzo 4.6, might also
> affect OpenVZ.

Thanks for the report.
This should fix it:
(marking "done" so I don't forget -- comments will still show
up and you're welcome to reopen, if desired)


>From 38c5e7d12151d7673c4118668eb43b24643e10da Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Wed, 5 Sep 2012 22:33:44 +0200
Subject: [PATCH] tail,stat: add support for VZFS

* src/stat.c (human_fstype): Add a case: vzfs, 0x565A4653 (local).
Reported by Jens Rosenboom in http://bugs.gnu.org/12356
---
 src/stat.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/stat.c b/src/stat.c
index f75b7af..a9fb951 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -415,6 +415,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
       return "v9fs";
     case S_MAGIC_VXFS: /* 0xA501FCF5 local */
       return "vxfs";
+    case S_MAGIC_VZFS: /* 0x565A4653 local */
+      return "vzfs";
     case S_MAGIC_XENFS: /* 0xABBA1974 local */
       return "xenfs";
     case S_MAGIC_XENIX: /* 0x012FF7B4 local */
--
1.7.12.176.g3fc0e4c


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]