symlink.c (6b2553918d8b4e6de9853fd6315bec7271a2e592) | symlink.c (fceef393a538134f03b778c5d2519e670269342f) |
---|---|
1/* 2 * Copyright (C) Christoph Hellwig, 2001-2002 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 20 unchanged lines hidden (view full) --- 29 .getxattr = jfs_getxattr, 30 .listxattr = jfs_listxattr, 31 .removexattr = jfs_removexattr, 32}; 33 34const struct inode_operations jfs_symlink_inode_operations = { 35 .readlink = generic_readlink, 36 .get_link = page_get_link, | 1/* 2 * Copyright (C) Christoph Hellwig, 2001-2002 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * --- 20 unchanged lines hidden (view full) --- 29 .getxattr = jfs_getxattr, 30 .listxattr = jfs_listxattr, 31 .removexattr = jfs_removexattr, 32}; 33 34const struct inode_operations jfs_symlink_inode_operations = { 35 .readlink = generic_readlink, 36 .get_link = page_get_link, |
37 .put_link = page_put_link, | |
38 .setattr = jfs_setattr, 39 .setxattr = jfs_setxattr, 40 .getxattr = jfs_getxattr, 41 .listxattr = jfs_listxattr, 42 .removexattr = jfs_removexattr, 43}; 44 | 37 .setattr = jfs_setattr, 38 .setxattr = jfs_setxattr, 39 .getxattr = jfs_getxattr, 40 .listxattr = jfs_listxattr, 41 .removexattr = jfs_removexattr, 42}; 43 |