cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

symlink.c (499B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 *   Copyright (C) Christoph Hellwig, 2001-2002
      4 */
      5
      6#include <linux/fs.h>
      7#include "jfs_incore.h"
      8#include "jfs_inode.h"
      9#include "jfs_xattr.h"
     10
     11const struct inode_operations jfs_fast_symlink_inode_operations = {
     12	.get_link	= simple_get_link,
     13	.setattr	= jfs_setattr,
     14	.listxattr	= jfs_listxattr,
     15};
     16
     17const struct inode_operations jfs_symlink_inode_operations = {
     18	.get_link	= page_get_link,
     19	.setattr	= jfs_setattr,
     20	.listxattr	= jfs_listxattr,
     21};
     22