From: Simei Su <[email protected]> Add miss completion tag to other capabilities list, to indicate support for detecting a miss completion based on the upper bit of the completion tag.
Signed-off-by: Josh Hay <[email protected]> Signed-off-by: Simei Su <[email protected]> --- .mailmap | 1 + drivers/common/idpf/base/virtchnl2.h | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.mailmap b/.mailmap index 8f90e6f972..af452d54c6 100644 --- a/.mailmap +++ b/.mailmap @@ -1640,3 +1640,4 @@ Zorik Machulsky <[email protected]> Zyta Szpak <[email protected]> <[email protected]> <[email protected]> Jayaprakash Shanmugam <[email protected]> Zhenning Xiao <[email protected]> +Josh Hay <[email protected]> diff --git a/drivers/common/idpf/base/virtchnl2.h b/drivers/common/idpf/base/virtchnl2.h index cd47444835..c49e4b943c 100644 --- a/drivers/common/idpf/base/virtchnl2.h +++ b/drivers/common/idpf/base/virtchnl2.h @@ -231,6 +231,10 @@ #define VIRTCHNL2_CAP_RX_FLEX_DESC BIT(17) #define VIRTCHNL2_CAP_PTYPE BIT(18) #define VIRTCHNL2_CAP_LOOPBACK BIT(19) +/* Enable miss completion types plus ability to detect a miss completion if a + * reserved bit is set in a standared completion's tag. + */ +#define VIRTCHNL2_CAP_MISS_COMPL_TAG BIT(20) /* this must be the last capability */ #define VIRTCHNL2_CAP_OEM BIT(63) -- 2.34.1

