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=-4.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 A9706C433E0 for ; Wed, 1 Jul 2020 16:55:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 72CED2078B for ; Wed, 1 Jul 2020 16:55:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593622528; bh=GvtsGp11yx4CyQuZ9RgW9RmPb9CbIpEadx+tC5GAmYc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=dWa/AsNCdBU8mPMjFuT83b8PDtb89yxdaKeqOoTLnRge9Am2w7poKgw/qhxDwnTnS 5fxxFkpCUpw7sU+gEmFYvL5SCVz+mcci2/OKQVopp/R1+G6l+dJzUeVJlyYhDa1R3z STmxjh8014RElrXcbz2zfX+6Bqjy8RwHeMkXEQeQ= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732546AbgGAQz2 (ORCPT ); Wed, 1 Jul 2020 12:55:28 -0400 Received: from mail.kernel.org ([198.145.29.99]:58200 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730955AbgGAQz1 (ORCPT ); Wed, 1 Jul 2020 12:55:27 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 C23D72071A; Wed, 1 Jul 2020 16:55:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1593622527; bh=GvtsGp11yx4CyQuZ9RgW9RmPb9CbIpEadx+tC5GAmYc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Wef9XUjzZgqElVeeA6mWBmPRS8DJOiCuCsDfm+qOciiluO0lS0zIQcl7Ga69d16hG kMLS+YRdNuRemWr0BPaYksQuagE3DzG/PhEy+VeVyIAsCbzA6H/+IcdoLlR+PbvDFC jIowDjMEDK75H9txsXow2QCgtEQTvKB5z2gMVQbo= Date: Wed, 1 Jul 2020 18:55:13 +0200 From: Greg Kroah-Hartman To: Scott Branden Cc: Christoph Hellwig , Luis Chamberlain , Alexander Viro , Eric Biederman , Jessica Yu , BCM Kernel Feedback , "Rafael J . Wysocki" , James Morris , "Serge E . Hallyn" , Mimi Zohar , Dmitry Kasatkin , Kees Cook , Paul Moore , Stephen Smalley , Eric Paris , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, kexec@lists.infradead.org, linux-security-module@vger.kernel.org, linux-integrity@vger.kernel.org, selinux@vger.kernel.org Subject: Re: [PATCH v3 1/1] fs: move kernel_read_file* to its own include file Message-ID: <20200701165513.GA3176669@kroah.com> References: <20200617161218.18487-1-scott.branden@broadcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200617161218.18487-1-scott.branden@broadcom.com> Sender: linux-integrity-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-integrity@vger.kernel.org On Wed, Jun 17, 2020 at 09:12:18AM -0700, Scott Branden wrote: > Move kernel_read_file* out of linux/fs.h to its own linux/kernel_read_file.h > include file. That header gets pulled in just about everywhere > and doesn't really need functions not related to the general fs interface. > > Suggested-by: Christoph Hellwig > Signed-off-by: Scott Branden Acked-by: Greg Kroah-Hartman