mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
22 lines
399 B
C
22 lines
399 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2021, Oracle. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef _NET_SUNRPC_FAIL_H_
|
||
|
#define _NET_SUNRPC_FAIL_H_
|
||
|
|
||
|
#include <linux/fault-inject.h>
|
||
|
|
||
|
#if IS_ENABLED(CONFIG_FAULT_INJECTION)
|
||
|
|
||
|
struct fail_sunrpc_attr {
|
||
|
struct fault_attr attr;
|
||
|
};
|
||
|
|
||
|
extern struct fail_sunrpc_attr fail_sunrpc;
|
||
|
|
||
|
#endif /* CONFIG_FAULT_INJECTION */
|
||
|
|
||
|
#endif /* _NET_SUNRPC_FAIL_H_ */
|