[Libguestfs] [PATCH] NEW API: add new api xfs_info

2012-07-09 Thread Wanlong Gao
Add xfs_info to show the geometry of the xfs filesystem. Signed-off-by: Wanlong Gao gaowanl...@cn.fujitsu.com --- Hi Rich, This patch add xfs_info, and start the xfs support work. I'd like to add the xfs support, like xfs_growfs, xfs_io, xfs_db, xfs_repair etc. Any thoughts? Thanks, Wanlong

Re: [Libguestfs] [PATCH] NEW API: add new api xfs_info

2012-07-09 Thread Wanlong Gao
On 07/09/2012 05:08 PM, Richard W.M. Jones wrote: On Mon, Jul 09, 2012 at 04:37:52PM +0800, Wanlong Gao wrote: Add xfs_info to show the geometry of the xfs filesystem. Signed-off-by: Wanlong Gao gaowanl...@cn.fujitsu.com --- Hi Rich, This patch add xfs_info, and start the xfs support

Re: [Libguestfs] [PATCH] NEW API: add new api xfs_info

2012-07-09 Thread Richard W.M. Jones
On Mon, Jul 09, 2012 at 05:15:47PM +0800, Wanlong Gao wrote: rescue xfs_info /dev/vda1 meta-data=/dev/vda1 isize=256agcount=4, agsize=655358 blks = sectsz=512 attr=2 data = bsize=4096 blocks=2621432,

Re: [Libguestfs] [PATCH] NEW API: add new api xfs_info

2012-07-09 Thread Wanlong Gao
On 07/09/2012 05:28 PM, Richard W.M. Jones wrote: On Mon, Jul 09, 2012 at 05:15:47PM +0800, Wanlong Gao wrote: rescue xfs_info /dev/vda1 meta-data=/dev/vda1 isize=256agcount=4, agsize=655358 blks = sectsz=512 attr=2 data =

[Libguestfs] [PATCH 0/4] Provide guestmount --pid-file and document possible race when unmounting FUSE filesystems.

2012-07-09 Thread Richard W.M. Jones
The full description of this bug is here: https://bugzilla.redhat.com/show_bug.cgi?id=838592 and the effect it has on OpenStack is described here: https://bugzilla.redhat.com/show_bug.cgi?id=835466#c9 Rich. ___ Libguestfs mailing list

[Libguestfs] [PATCH 1/4] fuse: Document race condition possible with fusermount.

2012-07-09 Thread Richard W.M. Jones
From: Richard W.M. Jones rjo...@redhat.com See also: https://bugzilla.redhat.com/show_bug.cgi?id=835466#c9 --- fuse/guestmount.pod | 16 1 file changed, 16 insertions(+) diff --git a/fuse/guestmount.pod b/fuse/guestmount.pod index a0bc6f1..c37301c 100644 ---

[Libguestfs] [PATCH 2/4] fuse: Link to mount-local documentation in guestmount man page.

2012-07-09 Thread Richard W.M. Jones
From: Richard W.M. Jones rjo...@redhat.com --- fuse/guestmount.pod |6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fuse/guestmount.pod b/fuse/guestmount.pod index c37301c..d459045 100644 --- a/fuse/guestmount.pod +++ b/fuse/guestmount.pod @@ -122,6 +122,10 @@

[Libguestfs] [PATCH] podwrapper.sh: Use date from ChangeLog

2012-07-09 Thread Hilko Bengen
--- podwrapper.sh.in |4 1 file changed, 4 insertions(+) diff --git a/podwrapper.sh.in b/podwrapper.sh.in index ec750f1..0a84d13 100755 --- a/podwrapper.sh.in +++ b/podwrapper.sh.in @@ -53,6 +53,9 @@ if [ -z $abs_top_builddir ]; then exit 1 fi +DATE=`awk '/^[0-9]+-[0-9]+-[0-9]+/

[Libguestfs] Use predictable date in POD-generated manpages

2012-07-09 Thread Hilko Bengen
This is a minor issue that may break co-installability of i386/amd64 Debian packages: If the date in otherwise identical manpages differs across architectures, dpkg will refuse to install the two versions of the package together. See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680885