commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
23 lines
499 B
C
23 lines
499 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) Christoph Hellwig, 2001-2002
|
|
*/
|
|
|
|
#include <linux/fs.h>
|
|
#include "jfs_incore.h"
|
|
#include "jfs_inode.h"
|
|
#include "jfs_xattr.h"
|
|
|
|
const struct inode_operations jfs_fast_symlink_inode_operations = {
|
|
.get_link = simple_get_link,
|
|
.setattr = jfs_setattr,
|
|
.listxattr = jfs_listxattr,
|
|
};
|
|
|
|
const struct inode_operations jfs_symlink_inode_operations = {
|
|
.get_link = page_get_link,
|
|
.setattr = jfs_setattr,
|
|
.listxattr = jfs_listxattr,
|
|
};
|
|
|