Received: by 2002:ac0:a581:0:0:0:0:0 with SMTP id m1-v6csp2820033imm; Sun, 1 Jul 2018 06:21:21 -0700 (PDT) X-Google-Smtp-Source: ADUXVKIyCld61fiBObWw8l3LBfhKyrkFBIJrsPpQ73ZltU7/VTwZYEuWqJOmGCE8huYQCp6DHyu3 X-Received: by 2002:a65:5641:: with SMTP id m1-v6mr19041998pgs.246.1530451281578; Sun, 01 Jul 2018 06:21:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1530451281; cv=none; d=google.com; s=arc-20160816; b=LPqPZN2votBAjOLN+zce//LuQYUL3smPao4xAnu2037NEnnONFx4j0POCB0KhjINHf V+t1mjo2gxGx+RG3dhurjOBIy8DD+lxXuysIi6jn5O8MZbvEFZrB4z18GsbTCtL0+xxb b/0k1blt5wOak88I38eSx29KF3bGxeEJhebIU0xksXBdNa0HZhbcpUa6XK/h6csLleWi 1Vrh5aGF1KSfFN/pdhtjJ92gwGnf9E9Fnanr+f8sxFWMVzXAqqA/ySl7Vb+tPIZs20ug Spann4xZAeuLmi40W1rh78NBSHvb346GSaqVyEZayBpEqiNDe+St4ovcer/tUz9iltrH ZACQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=ICp5neoUtdqYZb2hdhsSWXRF8oJtv3izHMfTje0ZBI4=; b=tn43XpXDjY9kIisFCDzyNIAYQ8MsMh7fMZfgc3i7tiMQH2o1HJ3o2mk4R1CKvDKxFd cbbsEnuxw2/m9NzrV/pd51jdGqOqb+7vkiuki0UW8/u2LxF6axfdCBqfQp4dFpoUWMaX 9mYleEmSifbo64VuWkhmk83A4loue25zPKiCr06ZT30Y+tiJRE55KV2yYj9lcXXJsbkP UA5u0PjC3y5FfO2Ps0cKUGMmucRWF2hTbHdK1sWvP3BKPbEk0FQdv7bUfildIIEIW/Mz HlEOQVwy3RW5k3kjOHc00Jb1Wxb0X7uPWWFNpUsQC8/WSCpaWv5iHLDPaFRtRBW4QtqN RS4Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v18-v6si14170493plo.285.2018.07.01.06.21.07; Sun, 01 Jul 2018 06:21:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752452AbeGANTQ (ORCPT + 99 others); Sun, 1 Jul 2018 09:19:16 -0400 Received: from orcrist.hmeau.com ([104.223.48.154]:53704 "EHLO deadmen.hmeau.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752407AbeGANTO (ORCPT ); Sun, 1 Jul 2018 09:19:14 -0400 Received: from gondobar.mordor.me.apana.org.au ([192.168.128.4] helo=gondobar) by deadmen.hmeau.com with esmtps (Exim 4.89 #2 (Debian)) id 1fZcFz-0003XC-D3; Sun, 01 Jul 2018 21:19:11 +0800 Received: from herbert by gondobar with local (Exim 4.89) (envelope-from ) id 1fZcFw-0008Ad-47; Sun, 01 Jul 2018 21:19:08 +0800 Date: Sun, 1 Jul 2018 21:19:08 +0800 From: Herbert Xu To: efremov@linux.com Cc: Eric Biggers , "David S. Miller" , linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, ldv-project@linuxtesting.org Subject: Re: [PATCH v2] crypto: skcipher: remove the exporting of skcipher_walk_next Message-ID: <20180701131908.jl5kg6gosrvkmc4p@gondor.apana.org.au> References: <20180617174959.29864-1-efremov@linux.com> <20180619202357.10805-1-efremov@linux.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180619202357.10805-1-efremov@linux.com> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jun 19, 2018 at 11:23:57PM +0300, efremov@linux.com wrote: > The function skcipher_walk_next declared as static and marked as > EXPORT_SYMBOL_GPL. It's a bit confusing for internal function to be > exported. The area of visibility for such function is its .c file > and all other modules. Other *.c files of the same module can't use it, > despite all other modules can. Relying on the fact that this is the > internal function and it's not a crucial part of the API, the patch > just removes the EXPORT_SYMBOL_GPL marking of skcipher_walk_next. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Denis Efremov Patch applied. Thanks. -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt