Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 187194
b: refs/heads/master
c: b3a0fd4
h: refs/heads/master
v: v3
  • Loading branch information
Alex Viskovatoff authored and Linus Torvalds committed Mar 12, 2010
1 parent 13d54a9 commit 39c37d1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d7d4d849b4e3acc405ec222884936800ffb26d48
refs/heads/master: b3a0fd4d877fe7692901b5867ba7cbd3f6d19d22
3 changes: 3 additions & 0 deletions trunk/fs/ufs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1016,6 +1016,9 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)
case UFS_FSSTABLE:
UFSD("fs is stable\n");
break;
case UFS_FSLOG:
UFSD("fs is logging fs\n");
break;
case UFS_FSOSF1:
UFSD("fs is DEC OSF/1\n");
break;
Expand Down
6 changes: 6 additions & 0 deletions trunk/fs/ufs/ufs_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,19 @@ typedef __u16 __bitwise __fs16;

#define UFS_USEEFT ((__u16)65535)

/* fs_clean values */
#define UFS_FSOK 0x7c269d38
#define UFS_FSACTIVE ((__s8)0x00)
#define UFS_FSCLEAN ((__s8)0x01)
#define UFS_FSSTABLE ((__s8)0x02)
#define UFS_FSOSF1 ((__s8)0x03) /* is this correct for DEC OSF/1? */
#define UFS_FSBAD ((__s8)0xff)

/* Solaris-specific fs_clean values */
#define UFS_FSSUSPEND ((__s8)0xfe) /* temporarily suspended */
#define UFS_FSLOG ((__s8)0xfd) /* logging fs */
#define UFS_FSFIX ((__s8)0xfc) /* being repaired while mounted */

/* From here to next blank line, s_flags for ufs_sb_info */
/* directory entry encoding */
#define UFS_DE_MASK 0x00000010 /* mask for the following */
Expand Down

0 comments on commit 39c37d1

Please sign in to comment.