From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kai Huang Date: Mon, 17 Jun 2019 11:01:38 +0000 Subject: Re: [PATCH, RFC 20/62] mm/page_ext: Export lookup_page_ext() symbol Message-Id: <1560769298.5187.16.camel@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit List-Id: References: <20190508144422.13171-1-kirill.shutemov@linux.intel.com> <20190508144422.13171-21-kirill.shutemov@linux.intel.com> <20190614111259.GA3436@hirez.programming.kicks-ass.net> <20190614224443.qmqolaigu5wnf75p@box> <20190617093054.GB3419@hirez.programming.kicks-ass.net> In-Reply-To: <20190617093054.GB3419@hirez.programming.kicks-ass.net> To: Peter Zijlstra , "Kirill A. Shutemov" Cc: "Kirill A. Shutemov" , Andrew Morton , x86@kernel.org, Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Borislav Petkov , Andy Lutomirski , David Howells , Kees Cook , Dave Hansen , Jacob Pan , Alison Schofield , linux-mm@kvack.org, kvm@vger.kernel.org, keyrings@vger.kernel.org, linux-kernel@vger.kernel.org On Mon, 2019-06-17 at 11:30 +0200, Peter Zijlstra wrote: > On Sat, Jun 15, 2019 at 01:44:43AM +0300, Kirill A. Shutemov wrote: > > On Fri, Jun 14, 2019 at 01:12:59PM +0200, Peter Zijlstra wrote: > > > On Wed, May 08, 2019 at 05:43:40PM +0300, Kirill A. Shutemov wrote: > > > > page_keyid() is inline funcation that uses lookup_page_ext(). KVM is > > > > going to use page_keyid() and since KVM can be built as a module > > > > lookup_page_ext() has to be exported. > > > > > > I _really_ hate having to export world+dog for KVM. This one might not > > > be a real issue, but I itch every time I see an export for KVM these > > > days. > > > > Is there any better way? Do we need to invent EXPORT_SYMBOL_KVM()? :P > > Or disallow KVM (or parts thereof) from being a module anymore. For this particular symbol expose, I don't think its fair to blame KVM since the fundamental reason is because page_keyid() (which calls lookup_page_ext()) being implemented as static inline function in header file, so essentially having any other module who calls page_keyid() will trigger this problem -- in fact IOMMU driver calls page_keyid() too so even w/o KVM lookup_page_ext() needs to be exposed. Thanks, -Kai