^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) // SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * (C) 2001 Clemson University and The University of Chicago
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) * See COPYING in top-level directory.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) #include "protocol.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) #include "orangefs-kernel.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #include "orangefs-bufmap.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) const struct inode_operations orangefs_symlink_inode_operations = {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) .get_link = simple_get_link,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) .setattr = orangefs_setattr,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) .getattr = orangefs_getattr,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) .listxattr = orangefs_listxattr,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) .permission = orangefs_permission,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) .update_time = orangefs_update_time,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) };