search for: xfs_mount

Displaying 4 results from an estimated 4 matches for "xfs_mount".

2017 Aug 23
0
Re: virt-sysprep: error: no operating systems were found in the guest image on libguestfs-1.36.5
...gt; [ 2.347074] ffff88001c25a020: e3 51 03 f0 80 28 40 84 b7 5a 98 69 a8 46 b6 46 .Q...(@..Z.i.F.F > [ 2.348416] ffff88001c25a030: 00 00 00 00 00 10 00 04 00 00 00 00 00 00 00 40 ...............@ > [ 2.349765] XFS (sda1): Internal error xfs_sb_read_verify at line 730 of file fs/xfs/xfs_mount.c. Caller 0xffffffffa01faf35 The problem is that the XFS module in this old kernel does not know how to read new features in the XFS filesystem from the CentOS 7 kernel (and instead of giving a useful error, panics). Unfortunately in general it's not possible to read an XFS filesystem from a...
2009 Sep 08
1
3Ware 9650SE and XFS problems under Centos 5.3
...882e1c7e>] :xfs:xfs_free_ag_extent+0x19f/0x67f Sep 8 11:00:14 backup kernel: [<ffffffff882e356b>] :xfs:xfs_free_extent+0xa9/0xc9 Sep 8 11:00:14 backup kernel: [<ffffffff883180e5>] :xfs:xlog_recover_finish+0x15a/0x244 Sep 8 11:00:14 backup kernel: [<ffffffff8831bb00>] :xfs:xfs_mountfs+0xa24/0xc30 Sep 8 11:00:14 backup kernel: [<ffffffff8000c394>] _atomic_dec_and_lock+0x39/0x57 Sep 8 11:00:14 backup kernel: [<ffffffff88321748>] :xfs:xfs_mount+0x762/0x83b Sep 8 11:00:14 backup kernel: [<ffffffff88330c79>] :xfs:xfs_fs_fill_super+0x0/0x1e3 Sep 8 11:00:14 b...
2017 Aug 23
2
virt-sysprep: error: no operating systems were found in the guest image on libguestfs-1.36.5
................ [ 2.347074] ffff88001c25a020: e3 51 03 f0 80 28 40 84 b7 5a 98 69 a8 46 b6 46 .Q...(@..Z.i.F.F [ 2.348416] ffff88001c25a030: 00 00 00 00 00 10 00 04 00 00 00 00 00 00 00 40 ...............@ [ 2.349765] XFS (sda1): Internal error xfs_sb_read_verify at line 730 of file fs/xfs/xfs_mount.c. Caller 0xffffffffa01faf35 [ 2.349765] [ 2.351733] CPU: 0 PID: 5 Comm: kworker/0:0H Not tainted 3.10.101 #1 [ 2.352728] Hardware name: Red Hat KVM, BIOS 0.5.1 01/01/2011 [ 2.353651] Workqueue: xfslogd xfs_buf_iodone_work [xfs] [ 2.354521] 0000000000000001 ffff88001d9dbd68 fffffff...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...+#define XFS_AG_H_ + +#include "xfs_types.h" + +/* + * Allocation group header + * This is divided into three structures, placed in sequential 512-byte + * buffers after a copy of the superblock (also in a 512-byte buffer). + */ + +typedef uint32_t xfs_agino_t; + +struct xfs_buf; +struct xfs_mount; +struct xfs_trans; + +#define XFS_AGF_MAGIC "XAGF" +#define XFS_AGF_VERSION 1 +#define XFS_AGI_VERSION 1 + +#define XFS_AGF_GOOD_VERSION(v) ((v) == XFS_AGF_VERSION) +#define XFS_AGI_GOOD_VERSION(v) ((v) == XFS_AGI_VERSION) + +/* + * Btree number 0 is bno, 1 is cnt. This value gives the...