Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bcd6d4ec authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds
Browse files

ufs: move non-layout parts of ufs_fs.h to fs/ufs/



Move prototypes and in-core structures to fs/ufs/ similar to what most
other filesystems already do.

I made little modifications: move also ufs debug macros and
mount options constants into fs/ufs/ufs.h, this stuff
also private for ufs.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarEvgeniy Dushistov <dushistov@mail.ru>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3542ae4c
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@
#include <linux/bitops.h>
#include <asm/byteorder.h>

#include "ufs.h"
#include "swab.h"
#include "util.h"

+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@

#include <asm/byteorder.h>

#include "ufs.h"
#include "swab.h"
#include "util.h"

+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include <linux/ufs_fs.h>
#include <linux/swap.h>

#include "ufs.h"
#include "swab.h"
#include "util.h"

+3 −0
Original line number Diff line number Diff line
@@ -27,6 +27,9 @@
#include <linux/ufs_fs.h>
#include <linux/buffer_head.h>	/* for sync_mapping_buffers() */

#include "ufs.h"


static int ufs_sync_file(struct file *file, struct dentry *dentry, int datasync)
{
	struct inode *inode = dentry->d_inode;
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@
#include <linux/bitops.h>
#include <asm/byteorder.h>

#include "ufs.h"
#include "swab.h"
#include "util.h"

Loading