Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/cam/ctl/ctl_nvme_all.h
39482 views
1
/*-
2
* SPDX-License-Identifier: BSD-2-Clause
3
*
4
* Copyright (c) 2023 Chelsio Communications, Inc.
5
*/
6
7
#ifndef __CTL_NVME_ALL_H__
8
#define __CTL_NVME_ALL_H__
9
10
__BEGIN_DECLS
11
12
void ctl_nvme_command_string(struct ctl_nvmeio *ctnio, struct sbuf *sb);
13
void ctl_nvme_status_string(struct ctl_nvmeio *ctnio, struct sbuf *sb);
14
15
__END_DECLS
16
17
#endif /* !__CTL_NVME_ALL_H__ */
18
19