~ubuntu-branches/debian/jessie/ufsutils/jessie

« back to all changes in this revision

Viewing changes to sys/ufs/ffs/fs.h

  • Committer: Package Import Robot
  • Author(s): Robert Millan
  • Date: 2011-11-27 18:18:04 UTC
  • Revision ID: package-import@ubuntu.com-20111127181804-ko4yrs10qfk0ia12
Tags: 8.2-3
* Add myself to Uploaders.
* Remove remnants of ZFS when creating a new file system.  (Closes: #635272)
  - 04_portable_berase.patch: Fix berase().
  - 05_wipe_otherfs.patch: Wipe out other filesystems by erasing first and
    last 512 kiB of disk (this works for at least ZFS, in addition to UFS1
    which was already taken care of).
* 00_portable_ufs_types.patch: Fix broken type for non-kFreeBSD
  platforms.  Thanks Vladimir Serbinenko.  (Closes: #646518)

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
        ufs2_daddr_t fs_csaddr;         /* blk addr of cyl grp summary area */
337
337
        int64_t  fs_pendingblocks;      /* (u) blocks being freed */
338
338
        u_int32_t fs_pendinginodes;     /* (u) inodes being freed */
339
 
        ino_t    fs_snapinum[FSMAXSNAP];/* list of snapshot inode numbers */
 
339
        uint32_t fs_snapinum[FSMAXSNAP];/* list of snapshot inode numbers */
340
340
        u_int32_t fs_avgfilesize;       /* expected average file size */
341
341
        u_int32_t fs_avgfpdir;          /* expected # of files per directory */
342
342
        int32_t  fs_save_cgsize;        /* save real cg size to use fs_bsize */