OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [fs/] [minix/] [itree_v1.c] - Rev 1275

Go to most recent revision | Compare with Previous | Blame | View Log

#include <linux/fs.h>
#include <linux/minix_fs.h>
#include <linux/locks.h>
#include <linux/smp_lock.h>
 
enum {DEPTH = 3, DIRECT = 7};	/* Only double indirect */
 
typedef u16 block_t;	/* 16 bit, host order */
 
static inline unsigned long block_to_cpu(block_t n)
{
	return n;
}
 
static inline block_t cpu_to_block(unsigned long n)
{
	return n;
}
 
static inline block_t *i_data(struct inode *inode)
{
	return (block_t *)inode->u.minix_i.u.i1_data;
}
 
static int block_to_path(struct inode * inode, long block, int offsets[DEPTH])
{
	int n = 0;
 
	if (block < 0) {
		printk("minix_bmap: block<0");
	} else if (block >= (inode->i_sb->u.minix_sb.s_max_size/BLOCK_SIZE)) {
		printk("minix_bmap: block>big");
	} else if (block < 7) {
		offsets[n++] = block;
	} else if ((block -= 7) < 512) {
		offsets[n++] = 7;
		offsets[n++] = block;
	} else {
		block -= 512;
		offsets[n++] = 8;
		offsets[n++] = block>>9;
		offsets[n++] = block & 511;
	}
	return n;
}
 
#include "itree_common.c"
 
int V1_minix_get_block(struct inode * inode, long block,
			struct buffer_head *bh_result, int create)
{
	return get_block(inode, block, bh_result, create);
}
 
void V1_minix_truncate(struct inode * inode)
{
	truncate(inode);
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.