18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * (C) 2001 Clemson University and The University of Chicago 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * See COPYING in top-level directory. 68c2ecf20Sopenharmony_ci */ 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#include "protocol.h" 98c2ecf20Sopenharmony_ci#include "orangefs-kernel.h" 108c2ecf20Sopenharmony_ci#include "orangefs-bufmap.h" 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ciconst struct inode_operations orangefs_symlink_inode_operations = { 138c2ecf20Sopenharmony_ci .get_link = simple_get_link, 148c2ecf20Sopenharmony_ci .setattr = orangefs_setattr, 158c2ecf20Sopenharmony_ci .getattr = orangefs_getattr, 168c2ecf20Sopenharmony_ci .listxattr = orangefs_listxattr, 178c2ecf20Sopenharmony_ci .permission = orangefs_permission, 188c2ecf20Sopenharmony_ci .update_time = orangefs_update_time, 198c2ecf20Sopenharmony_ci}; 20