/*
* 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/bitmap.c
*
* Copyright (C) 1991, 1992 Linus Torvalds
*/
/*
* Modified for 680x0 by Hamish Macdonald
* Fixed for 680x0 by Andreas Schwab
*/
/* bitmap.c contains the code that handles the inode and block bitmaps */
#include "xiafs.h"
#include "bitmap.h"
#include <linux/fs.h>
#include <linux/buffer_head.h>
#include <linux/bitops.h>
#include <linux/sched.h>