File: ufs_fs_i.h

package info (click to toggle)
kernel-source-2.0.38 2.0.38-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 34,660 kB
  • ctags: 102,964
  • sloc: ansic: 632,204; asm: 26,444; makefile: 4,286; sh: 1,276; perl: 761; tcl: 408; cpp: 277; lisp: 211; awk: 134
file content (30 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 *  linux/include/linux/ufs_fs_i.h
 *
 * Copyright (C) 1996
 * Adrian Rodriguez (adrian@franklins-tower.rutgers.edu)
 * Laboratory for Computer Science Research Computing Facility
 * Rutgers, The State University of New Jersey
 *
 * $Id: ufs_fs_i.h,v 1.1 1996/04/21 14:45:13 davem Exp $
 *
 */

#ifndef _LINUX_UFS_FS_I_H
#define _LINUX_UFS_FS_I_H

#include <linux/ufs_fs.h>

struct ufs_inode_info {
	__u64	ui_size;
	__u32	ui_flags;
	__u32	ui_gen;
	__u32	ui_shadow;
	__u32	ui_uid;
	__u32	ui_gid;
	__u32	ui_oeftflag;
	__u32	ui_db[UFS_NDADDR];
	__u32	ui_ib[UFS_NINDIR];
};

#endif /* _LINUX_UFS_FS_I_H */