]> git.neil.brown.name Git - LaFS.git/blob - link.c
README update
[LaFS.git] / link.c
1
2 /*
3  * fs/lafs/link.c
4  * Copyright (C) 2005
5  * Neil Brown <neilb@suse.de>
6  * Released under the GPL, version 2
7  *
8  * Symlink operations
9  */
10
11 #include        "lafs.h"
12
13 const struct inode_operations lafs_link_ino_operations = {
14         .readlink       = generic_readlink,
15         .follow_link    = page_follow_link_light,
16         .put_link       = page_put_link,
17         .getattr        = lafs_getattr,
18 };