diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-13 12:07:04 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-13 12:07:04 +0000 |
commit | 688a5c00b0352831e6801fca5d4f1d28a9f6d0c1 (patch) | |
tree | fbc43ea65e1bbbe11b60bc2f3d86406fb3230c2e /sys | |
parent | a5d4a284cd368acca8e9105dc6a3367720d1a09f (diff) |
make a place for q_id to go
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/nvmevar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/nvmevar.h b/sys/dev/ic/nvmevar.h index 4b2794c0f37..2d024d6a2e1 100644 --- a/sys/dev/ic/nvmevar.h +++ b/sys/dev/ic/nvmevar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nvmevar.h,v 1.2 2014/04/15 10:28:07 dlg Exp $ */ +/* $OpenBSD: nvmevar.h,v 1.3 2016/04/13 12:07:03 dlg Exp $ */ /* * Copyright (c) 2014 David Gwynne <dlg@openbsd.org> @@ -50,6 +50,7 @@ struct nvme_queue { struct nvme_dmamem *q_cq_dmamem; bus_size_t q_sqtdbl; /* submission queue tail doorbell */ bus_size_t q_cqhdbl; /* completion queue head doorbell */ + u_int16_t q_id; u_int32_t q_entries; u_int32_t q_sq_tail; u_int32_t q_cq_head; |