summaryrefslogtreecommitdiff
path: root/include/linux/root_dev.h
blob: ed241aad7c17a8c8375bce2728bca6c7018759fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _ROOT_DEV_H_
#define _ROOT_DEV_H_

#include <linux/major.h>
#include <linux/types.h>
#include <linux/kdev_t.h>

enum {
	Root_NFS = MKDEV(UNNAMED_MAJOR, 255),
	Root_RAM0 = MKDEV(RAMDISK_MAJOR, 0),
	Root_RAM1 = MKDEV(RAMDISK_MAJOR, 1),
	Root_FD0 = MKDEV(FLOPPY_MAJOR, 0),
	Root_HDA1 = MKDEV(IDE0_MAJOR, 1),
	Root_HDA2 = MKDEV(IDE0_MAJOR, 2),
	Root_SDA1 = MKDEV(SCSI_DISK0_MAJOR, 1),
	Root_SDA2 = MKDEV(SCSI_DISK0_MAJOR, 2),
	Root_HDC1 = MKDEV(IDE1_MAJOR, 1),
	Root_SR0 = MKDEV(SCSI_CDROM_MAJOR, 0),
};

extern dev_t ROOT_DEV;

#endif
d>ocfs2: flush inode data to disk and free inode when i_count becomes zeroXue jiufei 2015-04-26Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds 2015-04-15VFS: normal filesystems (and lustre): d_inode() annotationsDavid Howells 2015-04-14ocfs2: use ENOENT instead of EEXIST when get system file failsJoseph Qi 2015-02-16ocfs2: add functions to add and remove inode in orphan dirJoseph Qi 2014-12-10ocfs2: remove bogus test from ocfs2_read_locked_inode()Jan Kara 2014-04-03mm + fs: store shadow entries in page cacheJohannes Weiner 2014-04-03ocfs2: avoid blocking in ocfs2_mark_lockres_freeing() in downconvert threadJan Kara 2014-04-03ocfs2: move dquot_initialize() in ocfs2_delete_inode() somewhat laterJan Kara 2014-04-03ocfs2: remove OCFS2_INODE_SKIP_DELETE flagJan Kara 2014-04-03ocfs2: improve fsync efficiency and fix deadlock between aio_write and sync_fileDarrick J. Wong 2013-11-09ocfs2: get rid of impossible checksAl Viro 2013-02-13ocfs2: Convert uid and gids between in core and on disk inodesEric W. Biederman 2012-05-29ocfs: simplify symlink handlingAl Viro 2012-05-06vfs: Rename end_writeback() to clear_inode()Jan Kara