Linux Documentation
 help / color / mirror / Atom feed
From: Conor Dooley <conor.dooley@microchip.com>
To: Jerry Shih <jerry.shih@sifive.com>
Cc: "Clément Léger" <cleger@rivosinc.com>,
	linux-riscv@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org,
	"Palmer Dabbelt" <palmer@rivosinc.com>,
	"Paul Walmsley" <paul.walmsley@sifive.com>,
	"Rob Herring" <robh+dt@kernel.org>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
	"Albert Ou" <aou@eecs.berkeley.edu>,
	"Jonathan Corbet" <corbet@lwn.net>,
	"Andrew Jones" <ajones@ventanamicro.com>,
	"Evan Green" <evan@rivosinc.com>,
	"Conor Dooley" <conor@kernel.org>,
	"Samuel Ortiz" <sameo@rivosinc.com>
Subject: Re: [PATCH v3 06/20] riscv: add ISA extension parsing for vector crypto
Date: Thu, 9 Nov 2023 07:54:07 +0000	[thread overview]
Message-ID: <20231109-prevalent-serrated-d40eb5f71236@wendy> (raw)
In-Reply-To: <20231109-revolver-heat-9f4788c51bbf@wendy>

[-- Attachment #1: Type: text/plain, Size: 1072 bytes --]

On Thu, Nov 09, 2023 at 07:44:46AM +0000, Conor Dooley wrote:
> On Thu, Nov 09, 2023 at 10:58:41AM +0800, Jerry Shih wrote:
> > On Nov 7, 2023, at 18:55, Clément Léger <cleger@rivosinc.com> wrote:
> > > +static const unsigned int riscv_zvknhb_exts[] = {
> > > +	RISCV_ISA_EXT_ZVKNHA
> > > +};
> > > +
> > 
> > > +	__RISCV_ISA_EXT_SUPERSET(zvknhb, RISCV_ISA_EXT_ZVKNHB, riscv_zvknhb_exts),
> > > +	__RISCV_ISA_EXT_BUNDLE(zvks, riscv_zvks_bundled_exts),
> > 
> > The Zvknha and Zvknhb are exclusive. It's not the superset relationship.
> > 
> > Please check:
> > https://github.com/riscv/riscv-crypto/issues/364#issuecomment-1726782096
> 
> You got a response to this on the previous version, but didn't engage
> with it:
> https://lore.kernel.org/all/c64d9ddb-edbd-4c8f-b56f-1b90d82100b7@rivosinc.com/#t

Ahh, I now see what that happened. Your mailer is broken and puts the
message-id of what you are replying to in the In-Reply-To and Reply-To
headers. The former is correct, the latter is bogus & means you don't even
get delivered the response.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  reply	other threads:[~2023-11-09  7:54 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-07 10:55 [PATCH v3 00/20] riscv: report more ISA extensions through hwprobe Clément Léger
2023-11-07 10:55 ` [PATCH v3 01/20] riscv: hwprobe: factorize hwprobe ISA extension reporting Clément Léger
2023-11-07 10:55 ` [PATCH v3 02/20] riscv: hwprobe: export missing Zbc ISA extension Clément Léger
2023-11-07 10:55 ` [PATCH v3 03/20] riscv: add ISA extension parsing for scalar crypto Clément Léger
2023-11-08 15:17   ` Conor Dooley
2023-11-08 17:24   ` Evan Green
2023-11-07 10:55 ` [PATCH v3 04/20] riscv: hwprobe: add support for scalar crypto ISA extensions Clément Léger
2023-11-07 10:55 ` [PATCH v3 05/20] dt-bindings: riscv: add scalar crypto ISA extensions description Clément Léger
2023-11-08 14:57   ` Conor Dooley
2023-11-08 15:11     ` Clément Léger
2023-11-07 10:55 ` [PATCH v3 06/20] riscv: add ISA extension parsing for vector crypto Clément Léger
2023-11-09  2:58   ` Jerry Shih
2023-11-09  7:44     ` Conor Dooley
2023-11-09  7:54       ` Conor Dooley [this message]
2023-11-09  9:45         ` Jerry Shih
2023-11-09 10:39           ` Clément Léger
2023-11-07 10:55 ` [PATCH v3 07/20] riscv: hwprobe: export vector crypto ISA extensions Clément Léger
2023-11-07 10:55 ` [PATCH v3 08/20] dt-bindings: riscv: add vector crypto ISA extensions description Clément Léger
2023-11-07 10:55 ` [PATCH v3 09/20] riscv: add ISA extension parsing for Zfh/Zfh[min] Clément Léger
2023-11-07 10:55 ` [PATCH v3 10/20] riscv: hwprobe: export Zfh[min] ISA extensions Clément Léger
2023-11-07 10:55 ` [PATCH v3 11/20] dt-bindings: riscv: add Zfh[min] ISA extensions description Clément Léger
2023-11-07 10:55 ` [PATCH v3 12/20] riscv: add ISA extension parsing for Zihintntl Clément Léger
2023-11-07 10:55 ` [PATCH v3 13/20] riscv: hwprobe: export Zhintntl ISA extension Clément Léger
2023-11-07 10:55 ` [PATCH v3 14/20] dt-bindings: riscv: add Zihintntl ISA extension description Clément Léger
2023-11-07 10:55 ` [PATCH v3 15/20] riscv: add ISA extension parsing for Zvfh[min] Clément Léger
2023-11-07 10:55 ` [PATCH v3 16/20] riscv: hwprobe: export Zvfh[min] ISA extensions Clément Léger
2023-11-07 10:55 ` [PATCH v3 17/20] dt-bindings: riscv: add Zvfh[min] ISA extension description Clément Léger
2023-11-07 10:55 ` [PATCH v3 18/20] riscv: add ISA extension parsing for Zfa Clément Léger
2023-11-07 10:55 ` [PATCH v3 19/20] riscv: hwprobe: export Zfa ISA extension Clément Léger
2023-11-07 10:55 ` [PATCH v3 20/20] dt-bindings: riscv: add Zfa ISA extension description Clément Léger
2023-11-08 14:59   ` Conor Dooley
2023-11-09 10:42     ` Clément Léger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231109-prevalent-serrated-d40eb5f71236@wendy \
    --to=conor.dooley@microchip.com \
    --cc=ajones@ventanamicro.com \
    --cc=aou@eecs.berkeley.edu \
    --cc=cleger@rivosinc.com \
    --cc=conor@kernel.org \
    --cc=corbet@lwn.net \
    --cc=devicetree@vger.kernel.org \
    --cc=evan@rivosinc.com \
    --cc=jerry.shih@sifive.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=palmer@rivosinc.com \
    --cc=paul.walmsley@sifive.com \
    --cc=robh+dt@kernel.org \
    --cc=sameo@rivosinc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox