From: Eric Biggers <ebiggers@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Jens Axboe <axboe@kernel.dk>, "Theodore Y. Ts'o" <tytso@mit.edu>,
Mike Snitzer <snitzer@kernel.org>,
linux-fscrypt@vger.kernel.org, linux-block@vger.kernel.org,
dm-devel@redhat.com, Jaegeuk Kim <jaegeuk@kernel.org>
Subject: Re: [dm-devel] [PATCH 3/3] blk-crypto: move __blk_crypto_cfg_supported to blk-crypto-internal.h
Date: Mon, 7 Nov 2022 12:23:56 -0800 [thread overview]
Message-ID: <Y2lpXPD2jlumpNfr@sol.localdomain> (raw)
In-Reply-To: <20221107144229.1547370-4-hch@lst.de>
On Mon, Nov 07, 2022 at 03:42:29PM +0100, Christoph Hellwig wrote:
> __blk_crypto_cfg_supported is only used internally by the blk-crypto
> code now, so move it out of the public header.
"public header" is ambiguous here. blk-crypto.h is the "public header" for
upper layers, but blk-crypto-profile.h is the "public header" for drivers.
Maybe write "blk-crypto-profile.h, which is included by drivers".
> diff --git a/block/blk-crypto-internal.h b/block/blk-crypto-internal.h
> index e6818ffaddbf8..c587b3e1886c9 100644
> --- a/block/blk-crypto-internal.h
> +++ b/block/blk-crypto-internal.h
> @@ -19,6 +19,9 @@ struct blk_crypto_mode {
>
> extern const struct blk_crypto_mode blk_crypto_modes[];
>
> +bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile,
> + const struct blk_crypto_config *cfg);
> +
> #ifdef CONFIG_BLK_INLINE_ENCRYPTION
It should go in the '#ifdef CONFIG_BLK_INLINE_ENCRYPTION' section.
> diff --git a/include/linux/blk-crypto-profile.h b/include/linux/blk-crypto-profile.h
> index bbab65bd54288..e990ec9b32aa4 100644
> --- a/include/linux/blk-crypto-profile.h
> +++ b/include/linux/blk-crypto-profile.h
> @@ -144,9 +144,6 @@ blk_status_t blk_crypto_get_keyslot(struct blk_crypto_profile *profile,
>
> void blk_crypto_put_keyslot(struct blk_crypto_keyslot *slot);
>
> -bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile,
> - const struct blk_crypto_config *cfg);
> -
> int __blk_crypto_evict_key(struct blk_crypto_profile *profile,
> const struct blk_crypto_key *key);
Otherwise I guess this patch is fine. The exact same argument would also apply
to blk_crypto_get_keyslot(), blk_crypto_put_keyslot(), and
__blk_crypto_evict_key(), though. It might be worth handling them all in one
patch.
- Eric
--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel
WARNING: multiple messages have this Message-ID (diff)
From: Eric Biggers <ebiggers@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Jens Axboe <axboe@kernel.dk>, Mike Snitzer <snitzer@kernel.org>,
"Theodore Y. Ts'o" <tytso@mit.edu>,
Jaegeuk Kim <jaegeuk@kernel.org>,
dm-devel@redhat.com, linux-block@vger.kernel.org,
linux-fscrypt@vger.kernel.org
Subject: Re: [PATCH 3/3] blk-crypto: move __blk_crypto_cfg_supported to blk-crypto-internal.h
Date: Mon, 7 Nov 2022 12:23:56 -0800 [thread overview]
Message-ID: <Y2lpXPD2jlumpNfr@sol.localdomain> (raw)
In-Reply-To: <20221107144229.1547370-4-hch@lst.de>
On Mon, Nov 07, 2022 at 03:42:29PM +0100, Christoph Hellwig wrote:
> __blk_crypto_cfg_supported is only used internally by the blk-crypto
> code now, so move it out of the public header.
"public header" is ambiguous here. blk-crypto.h is the "public header" for
upper layers, but blk-crypto-profile.h is the "public header" for drivers.
Maybe write "blk-crypto-profile.h, which is included by drivers".
> diff --git a/block/blk-crypto-internal.h b/block/blk-crypto-internal.h
> index e6818ffaddbf8..c587b3e1886c9 100644
> --- a/block/blk-crypto-internal.h
> +++ b/block/blk-crypto-internal.h
> @@ -19,6 +19,9 @@ struct blk_crypto_mode {
>
> extern const struct blk_crypto_mode blk_crypto_modes[];
>
> +bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile,
> + const struct blk_crypto_config *cfg);
> +
> #ifdef CONFIG_BLK_INLINE_ENCRYPTION
It should go in the '#ifdef CONFIG_BLK_INLINE_ENCRYPTION' section.
> diff --git a/include/linux/blk-crypto-profile.h b/include/linux/blk-crypto-profile.h
> index bbab65bd54288..e990ec9b32aa4 100644
> --- a/include/linux/blk-crypto-profile.h
> +++ b/include/linux/blk-crypto-profile.h
> @@ -144,9 +144,6 @@ blk_status_t blk_crypto_get_keyslot(struct blk_crypto_profile *profile,
>
> void blk_crypto_put_keyslot(struct blk_crypto_keyslot *slot);
>
> -bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile,
> - const struct blk_crypto_config *cfg);
> -
> int __blk_crypto_evict_key(struct blk_crypto_profile *profile,
> const struct blk_crypto_key *key);
Otherwise I guess this patch is fine. The exact same argument would also apply
to blk_crypto_get_keyslot(), blk_crypto_put_keyslot(), and
__blk_crypto_evict_key(), though. It might be worth handling them all in one
patch.
- Eric
next prev parent reply other threads:[~2022-11-07 20:24 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-07 14:42 [dm-devel] pass a struct block_device to the blk-crypto interfaces v2 Christoph Hellwig
2022-11-07 14:42 ` Christoph Hellwig
2022-11-07 14:42 ` [dm-devel] [PATCH 1/3] blk-crypto: don't use struct request_queue for public interfaces Christoph Hellwig
2022-11-07 14:42 ` Christoph Hellwig
2022-11-07 20:16 ` [dm-devel] " Eric Biggers
2022-11-07 20:16 ` Eric Biggers
2022-11-09 13:14 ` [dm-devel] " Christoph Hellwig
2022-11-09 13:14 ` Christoph Hellwig
2022-11-07 14:42 ` [dm-devel] [PATCH 2/3] blk-crypto: add a blk_crypto_config_supported_natively helper Christoph Hellwig
2022-11-07 14:42 ` Christoph Hellwig
2022-11-07 20:18 ` [dm-devel] " Eric Biggers
2022-11-07 20:18 ` Eric Biggers
2022-11-07 14:42 ` [dm-devel] [PATCH 3/3] blk-crypto: move __blk_crypto_cfg_supported to blk-crypto-internal.h Christoph Hellwig
2022-11-07 14:42 ` Christoph Hellwig
2022-11-07 20:23 ` Eric Biggers [this message]
2022-11-07 20:23 ` Eric Biggers
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=Y2lpXPD2jlumpNfr@sol.localdomain \
--to=ebiggers@kernel.org \
--cc=axboe@kernel.dk \
--cc=dm-devel@redhat.com \
--cc=hch@lst.de \
--cc=jaegeuk@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-fscrypt@vger.kernel.org \
--cc=snitzer@kernel.org \
--cc=tytso@mit.edu \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.