Displaying 13 results from an estimated 13 matches for "xfs_sb".
Did you mean:
xfs_db
2010 Apr 25
2
[git pull] small fixes, sh4, getruage() README's
...-23,20 +23,20 @@
#define cpu_to_be32(x) __cpu_to_be32(x) /* Needed by romfs_fs.h */
-#include "romfs_fs.h"
+#include "btrfs.h"
#include "cramfs_fs.h"
-#include "minix_fs.h"
#include "ext2_fs.h"
#include "ext3_fs.h"
-#include "xfs_sb.h"
+#include "gfs2_fs.h"
+#include "iso9660_sb.h"
#include "luks_fs.h"
#include "lvm2_sb.h"
-#include "iso9660_sb.h"
-#include "squashfs_fs.h"
-#include "gfs2_fs.h"
-#include "ocfs2_fs.h"
+#include "minix_fs...
2006 Feb 05
0
Add LUKS support to fstype, second version
...- * gzip, cramfs, romfs, xfs, minix, ext3, ext2, reiserfs, jfs
+ * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs
*
* MINIX, ext3 and Reiserfs bits are currently untested.
*/
@@ -29,6 +29,7 @@
#include "ext2_fs.h"
#include "ext3_fs.h"
#include "xfs_sb.h"
+#include "luks_fs.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -168,6 +169,19 @@
return 0;
}
+static int luks_image(const unsigned char *buf, unsigned long long *blocks)
+{
+ const struct luks_partition_header *lph =
+ (const struct luks_partition_header...
2006 Mar 22
0
[patch] Add LVM2 detection to fstype
...order):
- * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs, swap
+ * gzip, cramfs, romfs, xfs, luks, lvm2, minix, ext3, ext2, reiserfs, jfs, swap
*
* MINIX, ext3 and Reiserfs bits are currently untested.
*/
@@ -30,6 +30,7 @@
#include "ext3_fs.h"
#include "xfs_sb.h"
#include "luks_fs.h"
+#include "lvm2_sb.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -202,6 +203,26 @@
return 0;
}
+static int lvm2_image(const void *buf, unsigned long long *blocks)
+{
+ const struct lvm2_super_block *lsb;
+ int i;
+
+ /* We mu...
2006 Sep 13
0
[patch] add iso9660 detection to fstype
...------------ next part --------------
diff -Nru klibc/usr/kinit/fstype/fstype.c klibc-hack/usr/kinit/fstype/fstype.c
--- klibc/usr/kinit/fstype/fstype.c 2006-09-14 00:19:41.000000000 +0200
+++ klibc-hack/usr/kinit/fstype/fstype.c 2006-09-14 00:10:01.000000000 +0200
@@ -31,6 +31,7 @@
#include "xfs_sb.h"
#include "luks_fs.h"
#include "lvm2_sb.h"
+#include "iso9660_sb.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -221,6 +222,21 @@
return 0;
}
+static int iso_image(const void *buf, unsigned long long *blocks)
+{
+ const struct iso_volume...
2007 Aug 10
1
[git patch] klibc small features
...| 5 +++++
usr/kinit/fstype/ext3_fs.h | 5 +++++
usr/kinit/fstype/fstype.c | 18 ++++++++++++++++--
usr/kinit/fstype/fstype.h | 5 +----
usr/kinit/fstype/reiser4_fs.h | 31 +++++++++++++++++++++++++++++++
usr/kinit/fstype/reiserfs_fs.h | 5 +++++
usr/kinit/fstype/xfs_sb.h | 5 +++++
usr/utils/Kbuild | 4 +++-
usr/utils/sync.c | 7 +++++++
11 files changed, 89 insertions(+), 7 deletions(-)
thanks
--
maks
ps have the debian/ubuntu fstype squashfs support queued up for next merge.
2014 Feb 24
0
[PATCH] fstype: f2fs support
..._packed;
+
+#endif /* F2FS_FS_H */
diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c
index c5a1432..34d633a 100644
--- a/usr/kinit/fstype/fstype.c
+++ b/usr/kinit/fstype/fstype.c
@@ -37,6 +37,7 @@
#include "romfs_fs.h"
#include "squashfs_fs.h"
#include "xfs_sb.h"
+#include "f2fs_fs.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -472,6 +473,18 @@ static int btrfs_image(const void *buf, unsigned long long *bytes)
return 0;
}
+static int f2fs_image(const void *buf, unsigned long long *bytes)
+{
+ const struct f2fs_super...
2012 Sep 03
1
[GIT-PULL] XFS filesystem driver
...23 ++
core/fs/xfs/xfs_dir2.c | 759 +++++++++++++++++++++++++++++++++++++++++++++
core/fs/xfs/xfs_dir2.h | 54 ++++
core/fs/xfs/xfs_fs.h | 501 ++++++++++++++++++++++++++++++
core/fs/xfs/xfs_readdir.c | 404 ++++++++++++++++++++++++
core/fs/xfs/xfs_readdir.h | 30 ++
core/fs/xfs/xfs_sb.h | 206 ++++++++++++
core/fs/xfs/xfs_types.h | 135 ++++++++
core/include/fs.h | 6 +-
core/ldlinux.asm | 2 +
extlinux/main.c | 235 +++++++++++---
extlinux/misc.h | 50 +++
extlinux/xfs.h | 25 ++
extlinux/xfs_fs.h | 50...
2010 Jul 07
0
[git pull v2] x86_32, sh4, getrusage()
...-23,20 +23,20 @@
#define cpu_to_be32(x) __cpu_to_be32(x) /* Needed by romfs_fs.h */
-#include "romfs_fs.h"
+#include "btrfs.h"
#include "cramfs_fs.h"
-#include "minix_fs.h"
#include "ext2_fs.h"
#include "ext3_fs.h"
-#include "xfs_sb.h"
+#include "gfs2_fs.h"
+#include "iso9660_sb.h"
#include "luks_fs.h"
#include "lvm2_sb.h"
-#include "iso9660_sb.h"
-#include "squashfs_fs.h"
-#include "gfs2_fs.h"
-#include "ocfs2_fs.h"
+#include "minix_fs...
2013 Jul 22
1
[PATCH 1/1 v2] Add UFS1/2 support to Extlinux installer.
..., ntfs, ext2/3/4, btrfs and xfs
- * filesystem.
+ * Install the syslinux boot block on an fat, ntfs, ext2/3/4, btrfs, xfs,
+ * and ufs1/2 filesystem.
*/
#define _GNU_SOURCE /* Enable everything */
@@ -50,6 +50,8 @@
#include "xfs.h"
#include "xfs_types.h"
#include "xfs_sb.h"
+#include "ufs.h"
+#include "ufs_fs.h"
#include "misc.h"
#include "version.h"
#include "syslxint.h"
@@ -76,8 +78,10 @@
#define XFS_BOOTSECT_OFFSET (4 << SECTOR_SHIFT)
#define XFS_SUPPORTED_BLOCKSIZE 4096 /* 4 KiB filesystem block...
2013 Jul 12
2
[PATCH 001/001] Add UFS1/2 support to Extlinux installer.
..., ntfs, ext2/3/4, btrfs and xfs
- * filesystem.
+ * Install the syslinux boot block on an fat, ntfs, ext2/3/4, btrfs, xfs,
+ * and ufs1/2 filesystem.
*/
#define _GNU_SOURCE /* Enable everything */
@@ -50,6 +50,8 @@
#include "xfs.h"
#include "xfs_types.h"
#include "xfs_sb.h"
+#include "ufs.h"
+#include "ufs_fs.h"
#include "misc.h"
#include "../version.h"
#include "syslxint.h"
@@ -76,8 +78,10 @@
#define XFS_BOOTSECT_OFFSET (4 << SECTOR_SHIFT)
#define XFS_SUPPORTED_BLOCKSIZE 4096 /* 4 KiB filesystem blo...
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Wrote the documentation below. I think it would be good to push the doc to
the wiki as soon as the UFS support gets merged.
Unix Fast File System (UFS/FFS) 1/2 on Syslinux - (usage/install)
-----
There is a confusion about the name of this file system, then I decided to
contact the author who replied:
"The name has always been
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Change since v1:
* Fix bug on dentry structure (thank you specification; btw, sarcasm), and
consequently a bug on ufs_readdir.
* Add readlink support (applied tests for symlinks whose destionation path
were stored in blk pointers and the file itself).
* Several improvements.
Wrote the documentation below. I think it would be good to
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In
particular, the patchset has been reorganized so as not to break
git-bisect.
Additionally, this updates the patch base to 2.6.17-git12
(d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main
difference on the klibc side is removal of obsolete code.
This is also available as a git tree at: