nvmet.h 16.7 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2015-2016 HGST, a Western Digital Company.
 */

#ifndef _NVMET_H
#define _NVMET_H

#include <linux/dma-mapping.h>
#include <linux/types.h>
#include <linux/device.h>
#include <linux/kref.h>
#include <linux/percpu-refcount.h>
#include <linux/list.h>
#include <linux/mutex.h>
C
Christoph Hellwig 已提交
16
#include <linux/uuid.h>
17 18 19 20
#include <linux/nvme.h>
#include <linux/configfs.h>
#include <linux/rcupdate.h>
#include <linux/blkdev.h>
21
#include <linux/radix-tree.h>
22
#include <linux/t10-pi.h>
23

24 25
#define NVMET_DEFAULT_VS		NVME_VS(1, 3, 0)

26 27
#define NVMET_ASYNC_EVENTS		4
#define NVMET_ERROR_LOG_SLOTS		128
28
#define NVMET_NO_ERROR_LOC		((u16)-1)
29
#define NVMET_DEFAULT_CTRL_MODEL	"Linux"
30
#define NVMET_MN_MAX_SIZE		40
31

32 33 34 35
/*
 * Supported optional AENs:
 */
#define NVMET_AEN_CFG_OPTIONAL \
36
	(NVME_AEN_CFG_NS_ATTR | NVME_AEN_CFG_ANA_CHANGE)
37 38
#define NVMET_DISC_AEN_CFG_OPTIONAL \
	(NVME_AEN_CFG_DISC_CHANGE)
39 40 41 42 43 44 45 46 47

/*
 * Plus mandatory SMART AENs (we'll never send them, but allow enabling them):
 */
#define NVMET_AEN_CFG_ALL \
	(NVME_SMART_CRIT_SPARE | NVME_SMART_CRIT_TEMPERATURE | \
	 NVME_SMART_CRIT_RELIABILITY | NVME_SMART_CRIT_MEDIA | \
	 NVME_SMART_CRIT_VOLATILE_MEMORY | NVMET_AEN_CFG_OPTIONAL)

48 49 50 51 52 53 54 55 56 57 58 59
/* Helper Macros when NVMe error is NVME_SC_CONNECT_INVALID_PARAM
 * The 16 bit shift is to set IATTR bit to 1, which means offending
 * offset starts in the data section of connect()
 */
#define IPO_IATTR_CONNECT_DATA(x)	\
	(cpu_to_le32((1 << 16) | (offsetof(struct nvmf_connect_data, x))))
#define IPO_IATTR_CONNECT_SQE(x)	\
	(cpu_to_le32(offsetof(struct nvmf_connect_command, x)))

struct nvmet_ns {
	struct percpu_ref	ref;
	struct block_device	*bdev;
60
	struct file		*file;
61
	bool			readonly;
62 63 64 65
	u32			nsid;
	u32			blksize_shift;
	loff_t			size;
	u8			nguid[16];
66
	uuid_t			uuid;
67
	u32			anagrpid;
68

69
	bool			buffered_io;
70
	bool			enabled;
71 72 73 74 75 76 77
	struct nvmet_subsys	*subsys;
	const char		*device_path;

	struct config_group	device_group;
	struct config_group	group;

	struct completion	disable_done;
78 79
	mempool_t		*bvec_pool;
	struct kmem_cache	*bvec_cache;
80 81 82

	int			use_p2pmem;
	struct pci_dev		*p2p_dev;
83 84
	int			pi_type;
	int			metadata_size;
85 86 87 88 89 90 91
};

static inline struct nvmet_ns *to_nvmet_ns(struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_ns, group);
}

92 93 94 95 96
static inline struct device *nvmet_ns_dev(struct nvmet_ns *ns)
{
	return ns->bdev ? disk_to_dev(ns->bdev->bd_disk) : NULL;
}

97 98 99 100 101 102 103 104 105 106
struct nvmet_cq {
	u16			qid;
	u16			size;
};

struct nvmet_sq {
	struct nvmet_ctrl	*ctrl;
	struct percpu_ref	ref;
	u16			qid;
	u16			size;
J
James Smart 已提交
107
	u32			sqhd;
108
	bool			sqhd_disabled;
109
	struct completion	free_done;
110
	struct completion	confirm_done;
111 112
};

113 114 115 116 117 118 119 120 121 122 123 124
struct nvmet_ana_group {
	struct config_group	group;
	struct nvmet_port	*port;
	u32			grpid;
};

static inline struct nvmet_ana_group *to_ana_group(struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_ana_group,
			group);
}

125 126 127
/**
 * struct nvmet_port -	Common structure to keep port
 *				information for the target.
128
 * @entry:		Entry into referrals or transport list.
129 130 131 132 133 134 135 136 137 138 139 140 141
 * @disc_addr:		Address information is stored in a format defined
 *				for a discovery log page entry.
 * @group:		ConfigFS group for this element's folder.
 * @priv:		Private data for the transport.
 */
struct nvmet_port {
	struct list_head		entry;
	struct nvmf_disc_rsp_page_entry	disc_addr;
	struct config_group		group;
	struct config_group		subsys_group;
	struct list_head		subsystems;
	struct config_group		referrals_group;
	struct list_head		referrals;
142
	struct list_head		global_entry;
143 144
	struct config_group		ana_groups_group;
	struct nvmet_ana_group		ana_default_group;
145
	enum nvme_ana_state		*ana_state;
146 147
	void				*priv;
	bool				enabled;
148
	int				inline_data_size;
149
	const struct nvmet_fabrics_ops	*tr_ops;
150
	bool				pi_enable;
151 152 153 154 155 156 157 158
};

static inline struct nvmet_port *to_nvmet_port(struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_port,
			group);
}

159 160 161 162 163 164 165
static inline struct nvmet_port *ana_groups_to_port(
		struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_port,
			ana_groups_group);
}

166 167 168 169
struct nvmet_ctrl {
	struct nvmet_subsys	*subsys;
	struct nvmet_sq		**sqs;

170 171
	bool			cmd_seen;

172 173 174 175 176
	struct mutex		lock;
	u64			cap;
	u32			cc;
	u32			csts;

177
	uuid_t			hostid;
178 179 180
	u16			cntlid;
	u32			kato;

181 182
	struct nvmet_port	*port;

183
	u32			aen_enabled;
C
Christoph Hellwig 已提交
184
	unsigned long		aen_masked;
185 186 187 188 189 190 191 192 193 194
	struct nvmet_req	*async_event_cmds[NVMET_ASYNC_EVENTS];
	unsigned int		nr_async_event_cmds;
	struct list_head	async_events;
	struct work_struct	async_event_work;

	struct list_head	subsys_entry;
	struct kref		ref;
	struct delayed_work	ka_work;
	struct work_struct	fatal_err_work;

195
	const struct nvmet_fabrics_ops *ops;
196

197 198 199
	__le32			*changed_ns_list;
	u32			nr_changed_ns;

200 201
	char			subsysnqn[NVMF_NQN_FIELD_LEN];
	char			hostnqn[NVMF_NQN_FIELD_LEN];
202

203 204
	struct device		*p2p_client;
	struct radix_tree_root	p2p_ns_map;
205 206 207 208

	spinlock_t		error_lock;
	u64			err_counter;
	struct nvme_error_slot	slots[NVMET_ERROR_LOG_SLOTS];
209
	bool			pi_support;
210 211 212 213 214 215 216 217
};

struct nvmet_subsys {
	enum nvme_subsys_type	type;

	struct mutex		lock;
	struct kref		ref;

218
	struct xarray		namespaces;
219
	unsigned int		nr_namespaces;
220
	unsigned int		max_nsid;
221 222
	u16			cntlid_min;
	u16			cntlid_max;
223 224 225 226 227 228 229 230 231

	struct list_head	ctrls;

	struct list_head	hosts;
	bool			allow_any_host;

	u16			max_qid;

	u64			ver;
232
	u64			serial;
233
	char			*subsysnqn;
234
	bool			pi_support;
235 236 237 238 239

	struct config_group	group;

	struct config_group	namespaces_group;
	struct config_group	allowed_hosts_group;
240

241
	char			*model_number;
242 243 244

#ifdef CONFIG_NVME_TARGET_PASSTHRU
	struct nvme_ctrl	*passthru_ctrl;
245
	char			*passthru_ctrl_path;
246
	struct config_group	passthru_group;
247
	unsigned int		admin_timeout;
248
	unsigned int		io_timeout;
249
#endif /* CONFIG_NVME_TARGET_PASSTHRU */
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
};

static inline struct nvmet_subsys *to_subsys(struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_subsys, group);
}

static inline struct nvmet_subsys *namespaces_to_subsys(
		struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_subsys,
			namespaces_group);
}

struct nvmet_host {
	struct config_group	group;
};

static inline struct nvmet_host *to_host(struct config_item *item)
{
	return container_of(to_config_group(item), struct nvmet_host, group);
}

static inline char *nvmet_host_name(struct nvmet_host *host)
{
	return config_item_name(&host->group.cg_item);
}

struct nvmet_host_link {
	struct list_head	entry;
	struct nvmet_host	*host;
};

struct nvmet_subsys_link {
	struct list_head	entry;
	struct nvmet_subsys	*subsys;
};

struct nvmet_req;
struct nvmet_fabrics_ops {
	struct module *owner;
	unsigned int type;
	unsigned int msdbd;
293 294 295
	unsigned int flags;
#define NVMF_KEYED_SGLS			(1 << 0)
#define NVMF_METADATA_SUPPORTED		(1 << 1)
296 297 298 299
	void (*queue_response)(struct nvmet_req *req);
	int (*add_port)(struct nvmet_port *port);
	void (*remove_port)(struct nvmet_port *port);
	void (*delete_ctrl)(struct nvmet_ctrl *ctrl);
300 301
	void (*disc_traddr)(struct nvmet_req *req,
			struct nvmet_port *port, char *traddr);
S
Sagi Grimberg 已提交
302
	u16 (*install_queue)(struct nvmet_sq *nvme_sq);
303
	void (*discovery_chg)(struct nvmet_port *port);
304
	u8 (*get_mdts)(const struct nvmet_ctrl *ctrl);
305 306 307
};

#define NVMET_MAX_INLINE_BIOVEC	8
308
#define NVMET_MAX_INLINE_DATA_LEN NVMET_MAX_INLINE_BIOVEC * PAGE_SIZE
309 310 311

struct nvmet_req {
	struct nvme_command	*cmd;
312
	struct nvme_completion	*cqe;
313 314 315 316
	struct nvmet_sq		*sq;
	struct nvmet_cq		*cq;
	struct nvmet_ns		*ns;
	struct scatterlist	*sg;
317
	struct scatterlist	*metadata_sg;
318
	struct bio_vec		inline_bvec[NVMET_MAX_INLINE_BIOVEC];
319 320 321 322 323 324 325 326 327 328
	union {
		struct {
			struct bio      inline_bio;
		} b;
		struct {
			bool			mpool_alloc;
			struct kiocb            iocb;
			struct bio_vec          *bvec;
			struct work_struct      work;
		} f;
329
		struct {
330
			struct bio		inline_bio;
331 332 333 334
			struct request		*rq;
			struct work_struct      work;
			bool			use_workqueue;
		} p;
335
	};
336
	int			sg_cnt;
337
	int			metadata_sg_cnt;
338 339
	/* data length as parsed from the SGL descriptor: */
	size_t			transfer_len;
340
	size_t			metadata_len;
341 342 343 344

	struct nvmet_port	*port;

	void (*execute)(struct nvmet_req *req);
345
	const struct nvmet_fabrics_ops *ops;
346

347 348
	struct pci_dev		*p2p_dev;
	struct device		*p2p_client;
349 350
	u16			error_loc;
	u64			error_slba;
351 352
};

353 354
extern struct workqueue_struct *buffered_io_wq;

355 356
static inline void nvmet_set_result(struct nvmet_req *req, u32 result)
{
357
	req->cqe->result.u32 = cpu_to_le32(result);
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
}

/*
 * NVMe command writes actually are DMA reads for us on the target side.
 */
static inline enum dma_data_direction
nvmet_data_dir(struct nvmet_req *req)
{
	return nvme_is_write(req->cmd) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
}

struct nvmet_async_event {
	struct list_head	entry;
	u8			event_type;
	u8			event_info;
	u8			log_page;
};

376
static inline void nvmet_clear_aen_bit(struct nvmet_req *req, u32 bn)
377
{
378
	int rae = le32_to_cpu(req->cmd->common.cdw10) & 1 << 15;
379 380

	if (!rae)
381
		clear_bit(bn, &req->sq->ctrl->aen_masked);
382 383
}

384
static inline bool nvmet_aen_bit_disabled(struct nvmet_ctrl *ctrl, u32 bn)
385
{
386
	if (!(READ_ONCE(ctrl->aen_enabled) & (1 << bn)))
387
		return true;
388
	return test_and_set_bit(bn, &ctrl->aen_masked);
389 390
}

391 392 393 394 395
void nvmet_get_feat_kato(struct nvmet_req *req);
void nvmet_get_feat_async_event(struct nvmet_req *req);
u16 nvmet_set_feat_kato(struct nvmet_req *req);
u16 nvmet_set_feat_async_event(struct nvmet_req *req, u32 mask);
void nvmet_execute_async_event(struct nvmet_req *req);
396 397
void nvmet_start_keep_alive_timer(struct nvmet_ctrl *ctrl);
void nvmet_stop_keep_alive_timer(struct nvmet_ctrl *ctrl);
398

399
u16 nvmet_parse_connect_cmd(struct nvmet_req *req);
400
void nvmet_bdev_set_limits(struct block_device *bdev, struct nvme_id_ns *id);
401 402
u16 nvmet_bdev_parse_io_cmd(struct nvmet_req *req);
u16 nvmet_file_parse_io_cmd(struct nvmet_req *req);
403 404 405
u16 nvmet_parse_admin_cmd(struct nvmet_req *req);
u16 nvmet_parse_discovery_cmd(struct nvmet_req *req);
u16 nvmet_parse_fabrics_cmd(struct nvmet_req *req);
406 407

bool nvmet_req_init(struct nvmet_req *req, struct nvmet_cq *cq,
408
		struct nvmet_sq *sq, const struct nvmet_fabrics_ops *ops);
409
void nvmet_req_uninit(struct nvmet_req *req);
410
bool nvmet_check_transfer_len(struct nvmet_req *req, size_t len);
411
bool nvmet_check_data_len_lte(struct nvmet_req *req, size_t data_len);
412
void nvmet_req_complete(struct nvmet_req *req, u16 status);
413 414
int nvmet_req_alloc_sgls(struct nvmet_req *req);
void nvmet_req_free_sgls(struct nvmet_req *req);
415

416 417
void nvmet_execute_set_features(struct nvmet_req *req);
void nvmet_execute_get_features(struct nvmet_req *req);
418 419
void nvmet_execute_keep_alive(struct nvmet_req *req);

420 421 422 423 424 425 426 427 428 429 430 431
void nvmet_cq_setup(struct nvmet_ctrl *ctrl, struct nvmet_cq *cq, u16 qid,
		u16 size);
void nvmet_sq_setup(struct nvmet_ctrl *ctrl, struct nvmet_sq *sq, u16 qid,
		u16 size);
void nvmet_sq_destroy(struct nvmet_sq *sq);
int nvmet_sq_init(struct nvmet_sq *sq);

void nvmet_ctrl_fatal_error(struct nvmet_ctrl *ctrl);

void nvmet_update_cc(struct nvmet_ctrl *ctrl, u32 new);
u16 nvmet_alloc_ctrl(const char *subsysnqn, const char *hostnqn,
		struct nvmet_req *req, u32 kato, struct nvmet_ctrl **ctrlp);
432 433 434
struct nvmet_ctrl *nvmet_ctrl_find_get(const char *subsysnqn,
				       const char *hostnqn, u16 cntlid,
				       struct nvmet_req *req);
435
void nvmet_ctrl_put(struct nvmet_ctrl *ctrl);
436
u16 nvmet_check_ctrl_status(struct nvmet_req *req);
437 438 439 440

struct nvmet_subsys *nvmet_subsys_alloc(const char *subsysnqn,
		enum nvme_subsys_type type);
void nvmet_subsys_put(struct nvmet_subsys *subsys);
441
void nvmet_subsys_del_ctrls(struct nvmet_subsys *subsys);
442

443
u16 nvmet_req_find_ns(struct nvmet_req *req);
444 445 446 447 448 449
void nvmet_put_namespace(struct nvmet_ns *ns);
int nvmet_ns_enable(struct nvmet_ns *ns);
void nvmet_ns_disable(struct nvmet_ns *ns);
struct nvmet_ns *nvmet_ns_alloc(struct nvmet_subsys *subsys, u32 nsid);
void nvmet_ns_free(struct nvmet_ns *ns);

450 451 452 453
void nvmet_send_ana_event(struct nvmet_subsys *subsys,
		struct nvmet_port *port);
void nvmet_port_send_ana_event(struct nvmet_port *port);

454 455
int nvmet_register_transport(const struct nvmet_fabrics_ops *ops);
void nvmet_unregister_transport(const struct nvmet_fabrics_ops *ops);
456

457 458 459
void nvmet_port_del_ctrls(struct nvmet_port *port,
			  struct nvmet_subsys *subsys);

460 461 462 463
int nvmet_enable_port(struct nvmet_port *port);
void nvmet_disable_port(struct nvmet_port *port);

void nvmet_referral_enable(struct nvmet_port *parent, struct nvmet_port *port);
464
void nvmet_referral_disable(struct nvmet_port *parent, struct nvmet_port *port);
465 466 467 468 469

u16 nvmet_copy_to_sgl(struct nvmet_req *req, off_t off, const void *buf,
		size_t len);
u16 nvmet_copy_from_sgl(struct nvmet_req *req, off_t off, void *buf,
		size_t len);
470
u16 nvmet_zero_sgl(struct nvmet_req *req, off_t off, size_t len);
471 472

u32 nvmet_get_log_page_len(struct nvme_command *cmd);
473
u64 nvmet_get_log_page_offset(struct nvme_command *cmd);
474

475 476 477 478 479 480 481 482
extern struct list_head *nvmet_ports;
void nvmet_port_disc_changed(struct nvmet_port *port,
		struct nvmet_subsys *subsys);
void nvmet_subsys_disc_changed(struct nvmet_subsys *subsys,
		struct nvmet_host *host);
void nvmet_add_async_event(struct nvmet_ctrl *ctrl, u8 event_type,
		u8 event_info, u8 log_page);

483
#define NVMET_QUEUE_SIZE	1024
J
James Smart 已提交
484
#define NVMET_NR_QUEUES		128
485
#define NVMET_MAX_CMD		NVMET_QUEUE_SIZE
486 487 488 489 490 491 492

/*
 * Nice round number that makes a list of nsids fit into a page.
 * Should become tunable at some point in the future.
 */
#define NVMET_MAX_NAMESPACES	1024

493 494 495 496 497 498
/*
 * 0 is not a valid ANA group ID, so we start numbering at 1.
 *
 * ANA Group 1 exists without manual intervention, has namespaces assigned to it
 * by default, and is available in an optimized state through all ports.
 */
499
#define NVMET_MAX_ANAGRPS	128
500 501
#define NVMET_DEFAULT_ANA_GRPID	1

502
#define NVMET_KAS		10
503
#define NVMET_DISC_KATO_MS		120000
504 505 506 507 508 509 510 511 512 513

int __init nvmet_init_configfs(void);
void __exit nvmet_exit_configfs(void);

int __init nvmet_init_discovery(void);
void nvmet_exit_discovery(void);

extern struct nvmet_subsys *nvmet_disc_subsys;
extern struct rw_semaphore nvmet_config_sem;

514 515 516 517
extern u32 nvmet_ana_group_enabled[NVMET_MAX_ANAGRPS + 1];
extern u64 nvmet_ana_chgcnt;
extern struct rw_semaphore nvmet_ana_sem;

518
bool nvmet_host_allowed(struct nvmet_subsys *subsys, const char *hostnqn);
519

520 521 522 523
int nvmet_bdev_ns_enable(struct nvmet_ns *ns);
int nvmet_file_ns_enable(struct nvmet_ns *ns);
void nvmet_bdev_ns_disable(struct nvmet_ns *ns);
void nvmet_file_ns_disable(struct nvmet_ns *ns);
524 525 526
u16 nvmet_bdev_flush(struct nvmet_req *req);
u16 nvmet_file_flush(struct nvmet_req *req);
void nvmet_ns_changed(struct nvmet_subsys *subsys, u32 nsid);
527 528
void nvmet_bdev_ns_revalidate(struct nvmet_ns *ns);
int nvmet_file_ns_revalidate(struct nvmet_ns *ns);
529
void nvmet_ns_revalidate(struct nvmet_ns *ns);
530

531
static inline u32 nvmet_rw_data_len(struct nvmet_req *req)
532 533 534 535
{
	return ((u32)le16_to_cpu(req->cmd->rw.length) + 1) <<
			req->ns->blksize_shift;
}
536

537 538 539 540 541 542 543 544
static inline u32 nvmet_rw_metadata_len(struct nvmet_req *req)
{
	if (!IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY))
		return 0;
	return ((u32)le16_to_cpu(req->cmd->rw.length) + 1) *
			req->ns->metadata_size;
}

545 546 547 548 549 550
static inline u32 nvmet_dsm_len(struct nvmet_req *req)
{
	return (le32_to_cpu(req->cmd->dsm.nr) + 1) *
		sizeof(struct nvme_dsm_range);
}

551 552 553 554 555
static inline struct nvmet_subsys *nvmet_req_subsys(struct nvmet_req *req)
{
	return req->sq->ctrl->subsys;
}

556
#ifdef CONFIG_NVME_TARGET_PASSTHRU
557 558 559
void nvmet_passthru_subsys_free(struct nvmet_subsys *subsys);
int nvmet_passthru_ctrl_enable(struct nvmet_subsys *subsys);
void nvmet_passthru_ctrl_disable(struct nvmet_subsys *subsys);
560 561 562 563 564 565 566
u16 nvmet_parse_passthru_admin_cmd(struct nvmet_req *req);
u16 nvmet_parse_passthru_io_cmd(struct nvmet_req *req);
static inline struct nvme_ctrl *nvmet_passthru_ctrl(struct nvmet_subsys *subsys)
{
	return subsys->passthru_ctrl;
}
#else /* CONFIG_NVME_TARGET_PASSTHRU */
567 568 569 570 571 572
static inline void nvmet_passthru_subsys_free(struct nvmet_subsys *subsys)
{
}
static inline void nvmet_passthru_ctrl_disable(struct nvmet_subsys *subsys)
{
}
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
static inline u16 nvmet_parse_passthru_admin_cmd(struct nvmet_req *req)
{
	return 0;
}
static inline u16 nvmet_parse_passthru_io_cmd(struct nvmet_req *req)
{
	return 0;
}
static inline struct nvme_ctrl *nvmet_passthru_ctrl(struct nvmet_subsys *subsys)
{
	return NULL;
}
#endif /* CONFIG_NVME_TARGET_PASSTHRU */

static inline struct nvme_ctrl *
nvmet_req_passthru_ctrl(struct nvmet_req *req)
{
590
	return nvmet_passthru_ctrl(nvmet_req_subsys(req));
591 592
}

593
u16 errno_to_nvme_status(struct nvmet_req *req, int errno);
594
u16 nvmet_report_invalid_opcode(struct nvmet_req *req);
595 596 597 598 599 600 601

/* Convert a 32-bit number to a 16-bit 0's based number */
static inline __le16 to0based(u32 a)
{
	return cpu_to_le16(max(1U, min(1U << 16, a)) - 1);
}

602 603 604 605 606 607 608
static inline bool nvmet_ns_has_pi(struct nvmet_ns *ns)
{
	if (!IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY))
		return false;
	return ns->pi_type && ns->metadata_size == sizeof(struct t10_pi_tuple);
}

609 610 611 612 613 614 615 616 617 618
static inline __le64 nvmet_sect_to_lba(struct nvmet_ns *ns, sector_t sect)
{
	return cpu_to_le64(sect >> (ns->blksize_shift - SECTOR_SHIFT));
}

static inline sector_t nvmet_lba_to_sect(struct nvmet_ns *ns, __le64 lba)
{
	return le64_to_cpu(lba) << (ns->blksize_shift - SECTOR_SHIFT);
}

619
#endif /* _NVMET_H */