]> git.ipfire.org Git - people/ms/linux.git/blame - fs/jfs/symlink.c
Merge tag 'soc-fixes-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[people/ms/linux.git] / fs / jfs / symlink.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4 2/*
1868f4aa 3 * Copyright (C) Christoph Hellwig, 2001-2002
1da177e4
LT
4 */
5
6#include <linux/fs.h>
1da177e4 7#include "jfs_incore.h"
1868f4aa 8#include "jfs_inode.h"
1da177e4
LT
9#include "jfs_xattr.h"
10
c7f2e1f0 11const struct inode_operations jfs_fast_symlink_inode_operations = {
6b255391 12 .get_link = simple_get_link,
c7f2e1f0 13 .setattr = jfs_setattr,
c7f2e1f0 14 .listxattr = jfs_listxattr,
c7f2e1f0
DM
15};
16
17const struct inode_operations jfs_symlink_inode_operations = {
6b255391 18 .get_link = page_get_link,
c7f2e1f0 19 .setattr = jfs_setattr,
1da177e4 20 .listxattr = jfs_listxattr,
1da177e4
LT
21};
22