Deleted Added
full compact
nvmecontrol.h (252278) nvmecontrol.h (253114)
1/*-
2 * Copyright (C) 2012-2013 Intel Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (C) 2012-2013 Intel Corporation
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sbin/nvmecontrol/nvmecontrol.h 252278 2013-06-27 00:08:25Z jimharris $
26 * $FreeBSD: head/sbin/nvmecontrol/nvmecontrol.h 253114 2013-07-09 21:31:21Z jimharris $
27 */
28
29#ifndef __NVMECONTROL_H__
30#define __NVMECONTROL_H__
31
32#include <dev/nvme/nvme.h>
33
34#define NVME_CTRLR_PREFIX "nvme"

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

58void devlist(int argc, char *argv[]);
59void identify(int argc, char *argv[]);
60void perftest(int argc, char *argv[]);
61void reset(int argc, char *argv[]);
62void logpage(int argc, char *argv[]);
63void firmware(int argc, char *argv[]);
64
65int open_dev(const char *str, int *fd, int show_error, int exit_on_error);
27 */
28
29#ifndef __NVMECONTROL_H__
30#define __NVMECONTROL_H__
31
32#include <dev/nvme/nvme.h>
33
34#define NVME_CTRLR_PREFIX "nvme"

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

58void devlist(int argc, char *argv[]);
59void identify(int argc, char *argv[]);
60void perftest(int argc, char *argv[]);
61void reset(int argc, char *argv[]);
62void logpage(int argc, char *argv[]);
63void firmware(int argc, char *argv[]);
64
65int open_dev(const char *str, int *fd, int show_error, int exit_on_error);
66void parse_ns_str(const char *ns_str, char *ctrlr_str, int *nsid);
66void read_controller_data(int fd, struct nvme_controller_data *cdata);
67void read_namespace_data(int fd, int nsid, struct nvme_namespace_data *nsdata);
68void print_hex(void *data, uint32_t length);
69void read_logpage(int fd, uint8_t log_page, int nsid, void *payload,
70 uint32_t payload_size);
71
72#endif
73
67void read_controller_data(int fd, struct nvme_controller_data *cdata);
68void read_namespace_data(int fd, int nsid, struct nvme_namespace_data *nsdata);
69void print_hex(void *data, uint32_t length);
70void read_logpage(int fd, uint8_t log_page, int nsid, void *payload,
71 uint32_t payload_size);
72
73#endif
74