From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34260) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fTny8-0001GR-0y for qemu-devel@nongnu.org; Fri, 15 Jun 2018 08:36:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fTny7-00087q-58 for qemu-devel@nongnu.org; Fri, 15 Jun 2018 08:36:44 -0400 Date: Fri, 15 Jun 2018 14:36:39 +0200 From: Igor Mammedov Message-ID: <20180615143639.7a86cde7@redhat.com> In-Reply-To: <20180615112500.19854-5-david@redhat.com> References: <20180615112500.19854-1-david@redhat.com> <20180615112500.19854-5-david@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 04/12] pc-dimm: remove pc_dimm_get_free_slot() from header List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: David Hildenbrand Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org, Eduardo Habkost , "Michael S . Tsirkin" , Marcel Apfelbaum , Paolo Bonzini , Richard Henderson , Xiao Guangrong , David Gibson , Alexander Graf On Fri, 15 Jun 2018 13:24:52 +0200 David Hildenbrand wrote: > Not used outside of pc-dimm.c and there shouldn't be other users. If > other devices ever have to also sue slots, this has to be factored out. s/sue/use/ or better rephrase the last sentence (it's hard to read) with that fixed Reviewed-by: Igor Mammedov > > Signed-off-by: David Hildenbrand > --- > hw/mem/pc-dimm.c | 4 +++- > include/hw/mem/pc-dimm.h | 2 -- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/hw/mem/pc-dimm.c b/hw/mem/pc-dimm.c > index 9e0c83e415..7387963cf1 100644 > --- a/hw/mem/pc-dimm.c > +++ b/hw/mem/pc-dimm.c > @@ -27,6 +27,8 @@ > #include "sysemu/numa.h" > #include "trace.h" > > +static int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp); > + > void pc_dimm_plug(DeviceState *dev, MachineState *machine, uint64_t align, > Error **errp) > { > @@ -111,7 +113,7 @@ static int pc_dimm_slot2bitmap(Object *obj, void *opaque) > return 0; > } > > -int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp) > +static int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp) > { > unsigned long *bitmap; > int slot = 0; > diff --git a/include/hw/mem/pc-dimm.h b/include/hw/mem/pc-dimm.h > index 860343d64f..cf71247630 100644 > --- a/include/hw/mem/pc-dimm.h > +++ b/include/hw/mem/pc-dimm.h > @@ -76,8 +76,6 @@ typedef struct PCDIMMDeviceClass { > MemoryRegion *(*get_vmstate_memory_region)(PCDIMMDevice *dimm); > } PCDIMMDeviceClass; > > -int pc_dimm_get_free_slot(const int *hint, int max_slots, Error **errp); > - > void pc_dimm_plug(DeviceState *dev, MachineState *machine, uint64_t align, > Error **errp); > void pc_dimm_unplug(DeviceState *dev, MachineState *machine);