From: Eric Biggers <ebiggers@kernel.org>
To: linux-fscrypt@vger.kernel.org
Cc: linux-ext4@vger.kernel.org,
linux-f2fs-devel@lists.sourceforge.net,
Victor Hsieh <victorhsieh@google.com>,
Jes Sorensen <Jes.Sorensen@gmail.com>,
Luca Boccassi <luca.boccassi@gmail.com>,
Martijn Coenen <maco@android.com>,
Paul Lawrence <paullawrence@google.com>
Subject: [PATCH 0/4] fs-verity cleanups
Date: Fri, 13 Nov 2020 13:19:14 -0800 [thread overview]
Message-ID: <20201113211918.71883-1-ebiggers@kernel.org> (raw)
This patchset renames some names that have been causing confusion:
- fsverity_signed_digest is renamed to fsverity_formatted_digest
- "fs-verity file measurement" is renamed to "fs-verity file digest"
In addition, this patchset moves fsverity_descriptor and
fsverity_formatted_digest to the UAPI header because userspace programs
may need them in order to sign files.
Eric Biggers (4):
fs-verity: remove filenames from file comments
fs-verity: rename fsverity_signed_digest to fsverity_formatted_digest
fs-verity: rename "file measurement" to "file digest"
fs-verity: move structs needed for file signing to UAPI header
Documentation/filesystems/fsverity.rst | 68 ++++++++++++--------------
fs/verity/enable.c | 8 +--
fs/verity/fsverity_private.h | 36 ++------------
fs/verity/hash_algs.c | 2 +-
fs/verity/init.c | 2 +-
fs/verity/measure.c | 12 ++---
fs/verity/open.c | 24 ++++-----
fs/verity/signature.c | 14 +++---
fs/verity/verify.c | 2 +-
include/uapi/linux/fsverity.h | 49 +++++++++++++++++++
10 files changed, 116 insertions(+), 101 deletions(-)
--
2.29.2
WARNING: multiple messages have this Message-ID (diff)
From: Eric Biggers <ebiggers@kernel.org>
To: linux-fscrypt@vger.kernel.org
Cc: Jes Sorensen <Jes.Sorensen@gmail.com>,
Luca Boccassi <luca.boccassi@gmail.com>,
linux-f2fs-devel@lists.sourceforge.net,
Paul Lawrence <paullawrence@google.com>,
linux-ext4@vger.kernel.org, Martijn Coenen <maco@android.com>,
Victor Hsieh <victorhsieh@google.com>
Subject: [f2fs-dev] [PATCH 0/4] fs-verity cleanups
Date: Fri, 13 Nov 2020 13:19:14 -0800 [thread overview]
Message-ID: <20201113211918.71883-1-ebiggers@kernel.org> (raw)
This patchset renames some names that have been causing confusion:
- fsverity_signed_digest is renamed to fsverity_formatted_digest
- "fs-verity file measurement" is renamed to "fs-verity file digest"
In addition, this patchset moves fsverity_descriptor and
fsverity_formatted_digest to the UAPI header because userspace programs
may need them in order to sign files.
Eric Biggers (4):
fs-verity: remove filenames from file comments
fs-verity: rename fsverity_signed_digest to fsverity_formatted_digest
fs-verity: rename "file measurement" to "file digest"
fs-verity: move structs needed for file signing to UAPI header
Documentation/filesystems/fsverity.rst | 68 ++++++++++++--------------
fs/verity/enable.c | 8 +--
fs/verity/fsverity_private.h | 36 ++------------
fs/verity/hash_algs.c | 2 +-
fs/verity/init.c | 2 +-
fs/verity/measure.c | 12 ++---
fs/verity/open.c | 24 ++++-----
fs/verity/signature.c | 14 +++---
fs/verity/verify.c | 2 +-
include/uapi/linux/fsverity.h | 49 +++++++++++++++++++
10 files changed, 116 insertions(+), 101 deletions(-)
--
2.29.2
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
next reply other threads:[~2020-11-13 21:20 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-13 21:19 Eric Biggers [this message]
2020-11-13 21:19 ` [f2fs-dev] [PATCH 0/4] fs-verity cleanups Eric Biggers
2020-11-13 21:19 ` [PATCH 1/4] fs-verity: remove filenames from file comments Eric Biggers
2020-11-13 21:19 ` [f2fs-dev] " Eric Biggers
2020-11-16 11:21 ` Luca Boccassi
2020-11-13 21:19 ` [PATCH 2/4] fs-verity: rename fsverity_signed_digest to fsverity_formatted_digest Eric Biggers
2020-11-13 21:19 ` [f2fs-dev] " Eric Biggers
2020-11-13 21:19 ` [PATCH 3/4] fs-verity: rename "file measurement" to "file digest" Eric Biggers
2020-11-13 21:19 ` [f2fs-dev] " Eric Biggers
2020-11-16 11:21 ` Luca Boccassi
2020-11-13 21:19 ` [PATCH 4/4] fs-verity: move structs needed for file signing to UAPI header Eric Biggers
2020-11-13 21:19 ` [f2fs-dev] " Eric Biggers
2020-11-16 11:25 ` Luca Boccassi
2020-11-16 19:57 ` [PATCH 0/4] fs-verity cleanups Eric Biggers
2020-11-16 19:57 ` [f2fs-dev] " 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=20201113211918.71883-1-ebiggers@kernel.org \
--to=ebiggers@kernel.org \
--cc=Jes.Sorensen@gmail.com \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-fscrypt@vger.kernel.org \
--cc=luca.boccassi@gmail.com \
--cc=maco@android.com \
--cc=paullawrence@google.com \
--cc=victorhsieh@google.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 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.