search for: ufs_type

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

Did you mean: vfs_type
2014 May 29
0
[PATCH 2/2] core/fs: Add support for Unix File system 1/2.
...(dirent->d_name, dir->name, dir->name_length); + dirent->d_name[dir->name_length] = '\0'; + + file->offset += dir->dir_entry_len; /* Update for next reading */ + + return 0; +} + +static inline struct ufs_sb_info * +set_ufs_info(struct ufs_super_block *sb, int ufs_type) +{ + struct ufs_sb_info *sbi; + + sbi = malloc(sizeof *sbi); + if (!sbi) + malloc_error("ufs_sb_info structure"); + + /* Setting up UFS-dependent info */ + if (ufs_type == UFS1) { + sbi->inode_size = sizeof (struct ufs1_inode); + sbi->groups_count = sb->ufs1.nr_fr...
2013 Jul 12
1
[PATCH 001/001] core/fs: Add support to Unix File system 1/2.
...(dirent->d_name, dir->name, dir->name_length); + dirent->d_name[dir->name_length] = '\0'; + + file->offset += dir->dir_entry_len; /* Update for next reading */ + + return 0; +} + +static inline struct ufs_sb_info * +set_ufs_info(struct ufs_super_block *sb, int ufs_type) +{ + struct ufs_sb_info *sbi; + + sbi = malloc(sizeof *sbi); + if (!sbi) + malloc_error("ufs_sb_info structure"); + + /* Setting up UFS-dependent info */ + if (ufs_type == UFS1) { + sbi->inode_size = sizeof (struct ufs1_inode); + sbi->groups_count = sb->ufs1.nr_fr...
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