symlink.c (6b2553918d8b4e6de9853fd6315bec7271a2e592) | symlink.c (fceef393a538134f03b778c5d2519e670269342f) |
---|---|
1/* 2 * Squashfs - a compressed read only filesystem for Linux 3 * 4 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 5 * Phillip Lougher <phillip@squashfs.org.uk> 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License --- 106 unchanged lines hidden (view full) --- 115 116const struct address_space_operations squashfs_symlink_aops = { 117 .readpage = squashfs_symlink_readpage 118}; 119 120const struct inode_operations squashfs_symlink_inode_ops = { 121 .readlink = generic_readlink, 122 .get_link = page_get_link, | 1/* 2 * Squashfs - a compressed read only filesystem for Linux 3 * 4 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008 5 * Phillip Lougher <phillip@squashfs.org.uk> 6 * 7 * This program is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU General Public License --- 106 unchanged lines hidden (view full) --- 115 116const struct address_space_operations squashfs_symlink_aops = { 117 .readpage = squashfs_symlink_readpage 118}; 119 120const struct inode_operations squashfs_symlink_inode_ops = { 121 .readlink = generic_readlink, 122 .get_link = page_get_link, |
123 .put_link = page_put_link, | |
124 .getxattr = generic_getxattr, 125 .listxattr = squashfs_listxattr 126}; 127 | 123 .getxattr = generic_getxattr, 124 .listxattr = squashfs_listxattr 125}; 126 |