/*
* Porting work to modern kernels copyright (C) Jeremy Bingham, 2013.
* Based on work by Linus Torvalds, Q. Frank Xia, and others as noted.
*
* This port of Q. Frank Xia's xiafs was done using the existing minix
* filesystem code, but based on the original xiafs code in pre-2.1.21 or so
* kernels.
*/
/*
* linux/fs/xiafs/inode.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*
* Copyright (C) 1996 Gertjan van Wingerde
* Minix V2 fs support.
*
* Modified for 680x0 by Andreas Schwab
* Updated to filesystem version 3 by Daniel Aragones
*/
#include <linux/module.h>
#include "xiafs.h"
#include <linux/buffer_head.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/highuid.h>
#include <linux/vfs.h>
#include <linux/writeback.h>