export.c (c95baf12f5077419db01313ab61c2aac007d40cd) export.c (daab110e47f8d7aa6da66923e3ac1a8dbd2b2a72)
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>

--- 157 unchanged lines hidden (view full) ---

166out:
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,
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>

--- 157 unchanged lines hidden (view full) ---

166out:
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,
174};
175};