export.c (01cbf3853959feec40ec9b9a399e12a021cd4d81) | export.c (716a8bc7f706eeef80ab42c99d9f210eda845c81) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2015, Primary Data, Inc. All rights reserved. 4 * 5 * Tao Peng <bergwolf@primarydata.com> 6 */ 7#include <linux/dcache.h> 8#include <linux/exportfs.h> --- 158 unchanged lines hidden (view full) --- 167 return parent; 168} 169 170const struct export_operations nfs_export_ops = { 171 .encode_fh = nfs_encode_fh, 172 .fh_to_dentry = nfs_fh_to_dentry, 173 .get_parent = nfs_get_parent, 174 .flags = EXPORT_OP_NOWCC|EXPORT_OP_NOSUBTREECHK| | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2015, Primary Data, Inc. All rights reserved. 4 * 5 * Tao Peng <bergwolf@primarydata.com> 6 */ 7#include <linux/dcache.h> 8#include <linux/exportfs.h> --- 158 unchanged lines hidden (view full) --- 167 return parent; 168} 169 170const struct export_operations nfs_export_ops = { 171 .encode_fh = nfs_encode_fh, 172 .fh_to_dentry = nfs_fh_to_dentry, 173 .get_parent = nfs_get_parent, 174 .flags = EXPORT_OP_NOWCC|EXPORT_OP_NOSUBTREECHK| |
175 EXPORT_OP_CLOSE_BEFORE_UNLINK|EXPORT_OP_REMOTE_FS, | 175 EXPORT_OP_CLOSE_BEFORE_UNLINK|EXPORT_OP_REMOTE_FS| 176 EXPORT_OP_NOATOMIC_ATTR, |
176}; | 177}; |