summaryrefslogtreecommitdiffstats
path: root/fs/minix/symlink.c
blob: 7e1d03a10c235e8494e53dd95e03b28de615c5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  linux/fs/minix/symlink.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *
 *  minix symlink handling code
 *
 *  Code removed. 1999, AV ;-)
 */

#include <linux/fs.h>
#include <linux/minix_fs.h>

/*
 * symlinks can't do much...
 */
struct inode_operations minix_symlink_inode_operations = {
	readlink:	page_readlink,
	follow_link:	page_follow_link,
	get_block:	minix_get_block,
	readpage:	block_read_full_page
};