| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  linux/fs/minix/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 "minix.h"
 | 
					
						
							|  |  |  | #include <linux/buffer_head.h>
 | 
					
						
							|  |  |  | #include <linux/bitops.h>
 | 
					
						
							| 
									
										
											  
											
												Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
   getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
   they don't need sched.h
b) sched.h stops being dependency for significant number of files:
   on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
   after patch it's only 3744 (-8.3%).
Cross-compile tested on
	all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
	alpha alpha-up
	arm
	i386 i386-up i386-defconfig i386-allnoconfig
	ia64 ia64-up
	m68k
	mips
	parisc parisc-up
	powerpc powerpc-up
	s390 s390-up
	sparc sparc-up
	sparc64 sparc64-up
	um-x86_64
	x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
											
										 
											2007-05-21 01:22:52 +04:00
										 |  |  | #include <linux/sched.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | static DEFINE_SPINLOCK(bitmap_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-26 22:38:50 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * bitmap consists of blocks filled with 16bit words | 
					
						
							|  |  |  |  * bit set == busy, bit clear == free | 
					
						
							|  |  |  |  * endianness is a mess, but for counting zero bits it really doesn't matter... | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static __u32 count_free(struct buffer_head *map[], unsigned blocksize, __u32 numbits) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-26 22:38:50 -04:00
										 |  |  | 	__u32 sum = 0; | 
					
						
							|  |  |  | 	unsigned blocks = DIV_ROUND_UP(numbits, blocksize * 8); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-26 22:38:50 -04:00
										 |  |  | 	while (blocks--) { | 
					
						
							|  |  |  | 		unsigned words = blocksize / 2; | 
					
						
							|  |  |  | 		__u16 *p = (__u16 *)(*map++)->b_data; | 
					
						
							|  |  |  | 		while (words--) | 
					
						
							|  |  |  | 			sum += 16 - hweight16(*p++); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-26 22:38:50 -04:00
										 |  |  | 	return sum; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | void minix_free_block(struct inode *inode, unsigned long block) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	struct super_block *sb = inode->i_sb; | 
					
						
							|  |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	struct buffer_head *bh; | 
					
						
							|  |  |  | 	int k = sb->s_blocksize_bits + 3; | 
					
						
							|  |  |  | 	unsigned long bit, zone; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (block < sbi->s_firstdatazone || block >= sbi->s_nzones) { | 
					
						
							| 
									
										
										
										
											2006-03-25 03:07:42 -08:00
										 |  |  | 		printk("Trying to free block not in datazone\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	zone = block - sbi->s_firstdatazone + 1; | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	bit = zone & ((1<<k) - 1); | 
					
						
							|  |  |  | 	zone >>= k; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (zone >= sbi->s_zmap_blocks) { | 
					
						
							|  |  |  | 		printk("minix_free_block: nonexistent bitmap buffer\n"); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	bh = sbi->s_zmap[zone]; | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_lock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	if (!minix_test_and_clear_bit(bit, bh->b_data)) | 
					
						
							|  |  |  | 		printk("minix_free_block (%s:%lu): bit already cleared\n", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       sb->s_id, block); | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mark_buffer_dirty(bh); | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int minix_new_block(struct inode * inode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct minix_sb_info *sbi = minix_sb(inode->i_sb); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	int bits_per_zone = 8 * inode->i_sb->s_blocksize; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < sbi->s_zmap_blocks; i++) { | 
					
						
							|  |  |  | 		struct buffer_head *bh = sbi->s_zmap[i]; | 
					
						
							|  |  |  | 		int j; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 		spin_lock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 		j = minix_find_first_zero_bit(bh->b_data, bits_per_zone); | 
					
						
							|  |  |  | 		if (j < bits_per_zone) { | 
					
						
							|  |  |  | 			minix_set_bit(j, bh->b_data); | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 			spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			mark_buffer_dirty(bh); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 			j += i * bits_per_zone + sbi->s_firstdatazone-1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			if (j < sbi->s_firstdatazone || j >= sbi->s_nzones) | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			return j; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 		spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-19 14:50:26 -04:00
										 |  |  | unsigned long minix_count_free_blocks(struct super_block *sb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-19 14:50:26 -04:00
										 |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	u32 bits = sbi->s_nzones - (sbi->s_firstdatazone + 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return (count_free(sbi->s_zmap, sb->s_blocksize, bits) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		<< sbi->s_log_zone_size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct minix_inode * | 
					
						
							|  |  |  | minix_V1_raw_inode(struct super_block *sb, ino_t ino, struct buffer_head **bh) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int block; | 
					
						
							|  |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	struct minix_inode *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ino || ino > sbi->s_ninodes) { | 
					
						
							|  |  |  | 		printk("Bad inode number on dev %s: %ld is out of range\n", | 
					
						
							|  |  |  | 		       sb->s_id, (long)ino); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ino--; | 
					
						
							|  |  |  | 	block = 2 + sbi->s_imap_blocks + sbi->s_zmap_blocks + | 
					
						
							|  |  |  | 		 ino / MINIX_INODES_PER_BLOCK; | 
					
						
							|  |  |  | 	*bh = sb_bread(sb, block); | 
					
						
							|  |  |  | 	if (!*bh) { | 
					
						
							| 
									
										
										
										
											2006-03-25 03:07:42 -08:00
										 |  |  | 		printk("Unable to read inode block\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	p = (void *)(*bh)->b_data; | 
					
						
							|  |  |  | 	return p + ino % MINIX_INODES_PER_BLOCK; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct minix2_inode * | 
					
						
							|  |  |  | minix_V2_raw_inode(struct super_block *sb, ino_t ino, struct buffer_head **bh) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int block; | 
					
						
							|  |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	struct minix2_inode *p; | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	int minix2_inodes_per_block = sb->s_blocksize / sizeof(struct minix2_inode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	*bh = NULL; | 
					
						
							|  |  |  | 	if (!ino || ino > sbi->s_ninodes) { | 
					
						
							|  |  |  | 		printk("Bad inode number on dev %s: %ld is out of range\n", | 
					
						
							|  |  |  | 		       sb->s_id, (long)ino); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ino--; | 
					
						
							|  |  |  | 	block = 2 + sbi->s_imap_blocks + sbi->s_zmap_blocks + | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 		 ino / minix2_inodes_per_block; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	*bh = sb_bread(sb, block); | 
					
						
							|  |  |  | 	if (!*bh) { | 
					
						
							| 
									
										
										
										
											2006-03-25 03:07:42 -08:00
										 |  |  | 		printk("Unable to read inode block\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	p = (void *)(*bh)->b_data; | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	return p + ino % minix2_inodes_per_block; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Clear the link count and mode of a deleted inode on disk. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void minix_clear_inode(struct inode *inode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct buffer_head *bh = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (INODE_VERSION(inode) == MINIX_V1) { | 
					
						
							|  |  |  | 		struct minix_inode *raw_inode; | 
					
						
							|  |  |  | 		raw_inode = minix_V1_raw_inode(inode->i_sb, inode->i_ino, &bh); | 
					
						
							|  |  |  | 		if (raw_inode) { | 
					
						
							|  |  |  | 			raw_inode->i_nlinks = 0; | 
					
						
							|  |  |  | 			raw_inode->i_mode = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		struct minix2_inode *raw_inode; | 
					
						
							|  |  |  | 		raw_inode = minix_V2_raw_inode(inode->i_sb, inode->i_ino, &bh); | 
					
						
							|  |  |  | 		if (raw_inode) { | 
					
						
							|  |  |  | 			raw_inode->i_nlinks = 0; | 
					
						
							|  |  |  | 			raw_inode->i_mode = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (bh) { | 
					
						
							|  |  |  | 		mark_buffer_dirty(bh); | 
					
						
							|  |  |  | 		brelse (bh); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void minix_free_inode(struct inode * inode) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	struct super_block *sb = inode->i_sb; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct minix_sb_info *sbi = minix_sb(inode->i_sb); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	struct buffer_head *bh; | 
					
						
							|  |  |  | 	int k = sb->s_blocksize_bits + 3; | 
					
						
							|  |  |  | 	unsigned long ino, bit; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ino = inode->i_ino; | 
					
						
							|  |  |  | 	if (ino < 1 || ino > sbi->s_ninodes) { | 
					
						
							|  |  |  | 		printk("minix_free_inode: inode 0 or nonexistent inode\n"); | 
					
						
							| 
									
										
										
										
											2010-06-04 22:27:38 -04:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	bit = ino & ((1<<k) - 1); | 
					
						
							|  |  |  | 	ino >>= k; | 
					
						
							|  |  |  | 	if (ino >= sbi->s_imap_blocks) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printk("minix_free_inode: nonexistent imap in superblock\n"); | 
					
						
							| 
									
										
										
										
											2010-06-04 22:27:38 -04:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	minix_clear_inode(inode);	/* clear on-disk copy */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	bh = sbi->s_imap[ino]; | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_lock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	if (!minix_test_and_clear_bit(bit, bh->b_data)) | 
					
						
							|  |  |  | 		printk("minix_free_inode: bit %lu already cleared\n", bit); | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mark_buffer_dirty(bh); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-26 02:48:39 -04:00
										 |  |  | struct inode *minix_new_inode(const struct inode *dir, umode_t mode, int *error) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct super_block *sb = dir->i_sb; | 
					
						
							|  |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	struct inode *inode = new_inode(sb); | 
					
						
							|  |  |  | 	struct buffer_head * bh; | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	int bits_per_zone = 8 * sb->s_blocksize; | 
					
						
							|  |  |  | 	unsigned long j; | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!inode) { | 
					
						
							|  |  |  | 		*error = -ENOMEM; | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	j = bits_per_zone; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	bh = NULL; | 
					
						
							|  |  |  | 	*error = -ENOSPC; | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_lock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	for (i = 0; i < sbi->s_imap_blocks; i++) { | 
					
						
							|  |  |  | 		bh = sbi->s_imap[i]; | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 		j = minix_find_first_zero_bit(bh->b_data, bits_per_zone); | 
					
						
							|  |  |  | 		if (j < bits_per_zone) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	if (!bh || j >= bits_per_zone) { | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 		spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		iput(inode); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	if (minix_test_and_set_bit(j, bh->b_data)) {	/* shouldn't happen */ | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 		spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 		printk("minix_new_inode: bit already set\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		iput(inode); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-06-16 23:47:45 -04:00
										 |  |  | 	spin_unlock(&bitmap_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	mark_buffer_dirty(bh); | 
					
						
							| 
									
										
										
										
											2007-02-12 00:52:49 -08:00
										 |  |  | 	j += i * bits_per_zone; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!j || j > sbi->s_ninodes) { | 
					
						
							|  |  |  | 		iput(inode); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-03-04 17:32:14 +03:00
										 |  |  | 	inode_init_owner(inode, dir, mode); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	inode->i_ino = j; | 
					
						
							|  |  |  | 	inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME_SEC; | 
					
						
							| 
									
										
										
										
											2006-09-27 01:50:49 -07:00
										 |  |  | 	inode->i_blocks = 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	memset(&minix_i(inode)->u, 0, sizeof(minix_i(inode)->u)); | 
					
						
							|  |  |  | 	insert_inode_hash(inode); | 
					
						
							|  |  |  | 	mark_inode_dirty(inode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*error = 0; | 
					
						
							|  |  |  | 	return inode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-19 14:50:26 -04:00
										 |  |  | unsigned long minix_count_free_inodes(struct super_block *sb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-19 14:50:26 -04:00
										 |  |  | 	struct minix_sb_info *sbi = minix_sb(sb); | 
					
						
							|  |  |  | 	u32 bits = sbi->s_ninodes + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return count_free(sbi->s_imap, sb->s_blocksize, bits); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } |