idxd: Move idxd_registers struct down in the spec file
This will make the following patches have a smaller diff. Signed-off-by: Ben Walker <benjamin.walker@intel.com> Change-Id: I6dc11e96fa9f6f0dd6690e5a0f0a8c144af96345 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/11430 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com>
This commit is contained in:
parent
834e3c5a0e
commit
950de39bc3
@ -376,16 +376,6 @@ struct idxd_opcap_register {
|
||||
};
|
||||
SPDK_STATIC_ASSERT(sizeof(struct idxd_opcap_register) == 32, "size mismatch");
|
||||
|
||||
struct idxd_registers {
|
||||
uint32_t version;
|
||||
union idxd_gencap_register gencap;
|
||||
union idxd_wqcap_register wqcap;
|
||||
union idxd_groupcap_register groupcap;
|
||||
union idxd_enginecap_register enginecap;
|
||||
struct idxd_opcap_register opcap;
|
||||
};
|
||||
SPDK_STATIC_ASSERT(sizeof(struct idxd_registers) == 72, "size mismatch");
|
||||
|
||||
union idxd_offsets_register {
|
||||
struct {
|
||||
uint64_t grpcfg: 16;
|
||||
@ -446,6 +436,16 @@ union idxd_swerr_register {
|
||||
};
|
||||
SPDK_STATIC_ASSERT(sizeof(union idxd_swerr_register) == 32, "size mismatch");
|
||||
|
||||
struct idxd_registers {
|
||||
uint32_t version;
|
||||
union idxd_gencap_register gencap;
|
||||
union idxd_wqcap_register wqcap;
|
||||
union idxd_groupcap_register groupcap;
|
||||
union idxd_enginecap_register enginecap;
|
||||
struct idxd_opcap_register opcap;
|
||||
};
|
||||
SPDK_STATIC_ASSERT(sizeof(struct idxd_registers) == 72, "size mismatch");
|
||||
|
||||
union idxd_group_flags {
|
||||
struct {
|
||||
uint32_t tc_a: 3;
|
||||
|
Loading…
Reference in New Issue
Block a user