rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * (C) 2001 Clemson University and The University of Chicago |
| 4 | * |
| 5 | * See COPYING in top-level directory. |
| 6 | */ |
| 7 | |
| 8 | #include "protocol.h" |
| 9 | #include "orangefs-kernel.h" |
| 10 | #include "orangefs-bufmap.h" |
| 11 | |
| 12 | const struct inode_operations orangefs_symlink_inode_operations = { |
| 13 | .get_link = simple_get_link, |
| 14 | .setattr = orangefs_setattr, |
| 15 | .getattr = orangefs_getattr, |
| 16 | .listxattr = orangefs_listxattr, |
| 17 | .permission = orangefs_permission, |
| 18 | }; |