Message ID | 20190523161811.6259-1-ebiggers@kernel.org (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-fscrypt-owner@kernel.org> Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2CA4917E0 for <patchwork-linux-fscrypt@patchwork.kernel.org>; Thu, 23 May 2019 16:21:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1AFF72846D for <patchwork-linux-fscrypt@patchwork.kernel.org>; Thu, 23 May 2019 16:21:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 18BB62865F; Thu, 23 May 2019 16:21:14 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2CF6B2853A for <patchwork-linux-fscrypt@patchwork.kernel.org>; Thu, 23 May 2019 16:21:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731115AbfEWQUf (ORCPT <rfc822;patchwork-linux-fscrypt@patchwork.kernel.org>); Thu, 23 May 2019 12:20:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:56210 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731064AbfEWQUf (ORCPT <rfc822;linux-fscrypt@vger.kernel.org>); Thu, 23 May 2019 12:20:35 -0400 Received: from sol.localdomain (c-24-5-143-220.hsd1.ca.comcast.net [24.5.143.220]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 697812175B; Thu, 23 May 2019 16:20:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1558628434; bh=FknFkuMqIQswK6dizRqW42viEu1UgGSSCdsOrOtPEl4=; h=From:To:Cc:Subject:Date:From; b=w2vprKRs36OU0mlW6tCtu/R0ScUiml1J+XkD5QpTz49lwK92Ff8FYyXBzhcERt0Xw qjLECrAkRM3bGAZRrvBTTyqAGWm2FPCYcswdDanEQtDYltpVjzrWak1F4NCAu27d1o P3cmKKMMuuIioJq8nr2Kqa7cUdCAfOXXo7e0VRhw= From: Eric Biggers <ebiggers@kernel.org> To: linux-fscrypt@vger.kernel.org Cc: linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-integrity@vger.kernel.org, linux-api@vger.kernel.org, "Theodore Y . Ts'o" <tytso@mit.edu>, Jaegeuk Kim <jaegeuk@kernel.org>, Victor Hsieh <victorhsieh@google.com> Subject: [PATCH v3 00/15] fs-verity: read-only file-based authenticity protection Date: Thu, 23 May 2019 09:17:56 -0700 Message-Id: <20190523161811.6259-1-ebiggers@kernel.org> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-fscrypt-owner@vger.kernel.org Precedence: bulk List-ID: <linux-fscrypt.vger.kernel.org> X-Mailing-List: linux-fscrypt@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP |
Series |
fs-verity: read-only file-based authenticity protection
|
expand
|
On Thu, May 23, 2019 at 09:17:56AM -0700, Eric Biggers wrote: > Hello, > > This is a redesigned version of the fs-verity patchset, implementing > Ted's suggestion to build the Merkle tree in the kernel > (https://lore.kernel.org/linux-fsdevel/20190207031101.GA7387@mit.edu/). Does anyone have any comments on this patchset? - Eric