162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * (C) 2001 Clemson University and The University of Chicago 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * See COPYING in top-level directory. 662306a36Sopenharmony_ci */ 762306a36Sopenharmony_ci 862306a36Sopenharmony_ci#include "protocol.h" 962306a36Sopenharmony_ci#include "orangefs-kernel.h" 1062306a36Sopenharmony_ci#include "orangefs-bufmap.h" 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ciconst struct inode_operations orangefs_symlink_inode_operations = { 1362306a36Sopenharmony_ci .get_link = simple_get_link, 1462306a36Sopenharmony_ci .setattr = orangefs_setattr, 1562306a36Sopenharmony_ci .getattr = orangefs_getattr, 1662306a36Sopenharmony_ci .listxattr = orangefs_listxattr, 1762306a36Sopenharmony_ci .permission = orangefs_permission, 1862306a36Sopenharmony_ci .update_time = orangefs_update_time, 1962306a36Sopenharmony_ci}; 20