From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Hansen Subject: Re: [PATCH][RESEND] drivers/base: export (un)register_memory_notifier Date: Mon, 11 Feb 2008 02:12:23 -0800 Message-ID: <1202724743.8276.2.camel@nimitz.home.sr71.net> References: <200802111049.05478.ossthema@de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Cc: Greg KH , Jan-Bernd Themann , Thomas Klein , netdev , linux-kernel , linux-ppc , Christoph Raisch To: Jan-Bernd Themann Return-path: Received: from e1.ny.us.ibm.com ([32.97.182.141]:46696 "EHLO e1.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752074AbYBKKMY (ORCPT ); Mon, 11 Feb 2008 05:12:24 -0500 In-Reply-To: <200802111049.05478.ossthema@de.ibm.com> Sender: netdev-owner@vger.kernel.org List-ID: On Mon, 2008-02-11 at 10:49 +0100, Jan-Bernd Themann wrote: > are you the right person to address this patch to? You might want to check the top of the file. ;) > --- a/drivers/base/memory.c > +++ b/drivers/base/memory.c > @@ -52,11 +52,13 @@ int register_memory_notifier(struct notifier_block *nb) > { > return blocking_notifier_chain_register(&memory_chain, nb); > } > +EXPORT_SYMBOL(register_memory_notifier); > > void unregister_memory_notifier(struct notifier_block *nb) > { > blocking_notifier_chain_unregister(&memory_chain, nb); > } > +EXPORT_SYMBOL(unregister_memory_notifier); Is there a particular reason these can't be GPL? -- Dave