From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4D70EC433DF for ; Sat, 1 Aug 2020 17:57:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 280B42076A for ; Sat, 1 Aug 2020 17:57:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596304651; bh=/fUm+4TT4fkLCanjAHQP9BmHYRtA2bPU194VicAjJqw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=br0KbBkT6kw6Wuaj8cEajAlV+hZP+XmP1ux6WXwnNMEePb3Zx3lw8/xUlKZTucxBR dKpr2PS28ghLXvcyjyygoeZfwX6WaT/aUPnkueu2BYkhj47REOEt9OR1S/EskF823i 1ysTpNc4VbuzL22aKH5yP7LwofkxQxSyoiaLcNh8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726807AbgHAR5a (ORCPT ); Sat, 1 Aug 2020 13:57:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:51488 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725883AbgHAR5a (ORCPT ); Sat, 1 Aug 2020 13:57:30 -0400 Received: from sol.localdomain (c-107-3-166-239.hsd1.ca.comcast.net [107.3.166.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 0BEDB206E9; Sat, 1 Aug 2020 17:57:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596304650; bh=/fUm+4TT4fkLCanjAHQP9BmHYRtA2bPU194VicAjJqw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=PtgrHgQTkPo9ekCYAqy0SV7osGvomwYdsXoTTTeptvBEYcKB18McXIdAshf6kro3h T95P/tbDPbQbotCexHHG5lbAmItPV0OUSI3qvDF6l+mfI6zTBBOlpu7II/81sI8OWn 73WCoHuVJFRtg3YpEWpqafkF4RE3rarVL74NjAMU= Date: Sat, 1 Aug 2020 10:57:28 -0700 From: Eric Biggers To: Jes Sorensen Cc: linux-fscrypt@vger.kernel.org, Jes Sorensen , Chris Mason , kernel-team@fb.com, Victor Hsieh Subject: Re: [fsverity-utils PATCH] Switch to MIT license Message-ID: <20200801175728.GA14666@sol.localdomain> References: <20200731191156.22602-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-fscrypt-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fscrypt@vger.kernel.org On Fri, Jul 31, 2020 at 04:37:33PM -0400, Jes Sorensen wrote: > On 7/31/20 3:11 PM, Eric Biggers wrote: > > From: Eric Biggers > > > > This allows libfsverity to be used by software with other common > > licenses, e.g. LGPL, MIT, BSD, and Apache 2.0. It also avoids the > > incompatibility that some people perceive between OpenSSL and the GPL. > > > > See discussion at > > https://lkml.kernel.org/linux-fscrypt/20200211000037.189180-1-Jes.Sorensen@gmail.com/T/#u > > > > Signed-off-by: Eric Biggers > > --- > > Acked-by: Jes Sorensen > > Applied and pushed. Thanks Chris and Jes! - Eric