Re: [PATCH v3] firmware_class: fix memory leak - free allocated pages

From: Pavan Savoy
Date: Tue May 04 2010 - 11:52:28 EST




--- On Tue, 4/5/10, Greg KH <greg@xxxxxxxxx> wrote:

> From: Greg KH <greg@xxxxxxxxx>
> Subject: Re: [PATCH v3] firmware_class: fix memory leak - free allocated pages
> To: "Pavan Savoy" <pavan_savoy@xxxxxxxxxxx>
> Cc: "Tomas Winkler" <tomas.winkler@xxxxxxxxx>, linux-kernel@xxxxxxxxxxxxxxx
> Date: Tuesday, 4 May, 2010, 9:17 PM
> On Tue, May 04, 2010 at 08:07:33PM
> +0530, Pavan Savoy wrote:
> >
> > --- On Tue, 4/5/10, Greg KH <greg@xxxxxxxxx>
> wrote:
> >
> > > From: Greg KH <greg@xxxxxxxxx>
> > > Subject: Re: [PATCH v3] firmware_class: fix
> memory leak - free allocated pages
> > > To: "Pavan Savoy" <pavan_savoy@xxxxxxxxxxx>
> > > Cc: "Tomas Winkler" <tomas.winkler@xxxxxxxxx>,
> linux-kernel@xxxxxxxxxxxxxxx
> > > Date: Tuesday, 4 May, 2010, 7:33 PM
> > > On Tue, May 04, 2010 at 12:16:44AM
> > > +0530, Pavan Savoy wrote:
> > > >
> > > >
> > > > --- On Mon, 3/5/10, Greg KH <greg@xxxxxxxxx>
> > > wrote:
> > > >
> > > > > From: Greg KH <greg@xxxxxxxxx>
> > > > > Subject: Re: [PATCH v3] firmware_class:
> fix
> > > memory leak - free allocated pages
> > > > > To: "Tomas Winkler" <tomas.winkler@xxxxxxxxx>
> > > > > Cc: "Greg Kroah-Hartman" <gregkh@xxxxxxx>,
> > > linux-kernel@xxxxxxxxxxxxxxx,
> > > "David Woodhouse" <dwmw2@xxxxxxxxxxxxx>,
> > > "Kay Sievers" <kay.sievers@xxxxxxxx>,
> > > "David Woodhouse" <David.Woodhouse@xxxxxxxxx>,
> > > "Johannes Berg" <johannes@xxxxxxxxxxxxxxxx>,
> > > "Ming Lei" <tom.leiming@xxxxxxxxx>,
> > > "Catalin Marinas" <catalin.marinas@xxxxxxx>
> > > > > Date: Monday, 3 May, 2010, 10:34 PM
> > > > > On Sun, May 02, 2010 at 11:21:21AM
> > > > > +0300, Tomas Winkler wrote:
> > > > > > From: David Woodhouse <David.Woodhouse@xxxxxxxxx>
> > > > > >
> > > > > > fix memory leak introduced by the
> patch
> > > 6e03a201bbe:
> > > > > > firmware: speed up
> request_firmware()
> > > > > >
> > > > > > 1. vfree won't release pages there
> were
> > > allocated
> > > > > explicitly and mapped
> > > > > > using vmap. The memory has to be
> vunmap-ed
> > > and the
> > > > > pages needs
> > > > > > to be freed explicitly
> > > > > >
> > > > > > 2. page array is moved into the
> 'struct
> > > > > > firmware' so that we can free it
> from
> > > > > release_firmware()
> > > > > > and not only in fw_dev_release()
> > > > > >
> > > > > > The fix doesn't break the firmware
> load
> > > speed.
> > > > > >
> > > > > > Cc: Johannes Berg <johannes@xxxxxxxxxxxxxxxx>
> > > > > > Cc: Greg Kroah-Hartman <gregkh@xxxxxxx>
> > > > > > Cc: Ming Lei <tom.leiming@xxxxxxxxx>
> > > > > > Cc: Catalin Marinas <catalin.marinas@xxxxxxx>
> > > > > > Singed-off-by: Kay Sievers <kay.sievers@xxxxxxxx>
> > > > > > Signed-off-by: David Woodhouse
> <David.Woodhouse@xxxxxxxxx>
> > > > > > Signed-off-by: Tomas Winkler
> <tomas.winkler@xxxxxxxxx>
> > > > > > ---
> > > > > > V2: fix authorship of the patch
> > > > > > V3: fix const struct firmware
> breakage
> > > > >
> > > > > Thanks, this looks much better, I've
> applied it
> > > now.
> > > >
> > > > Sorry to bump-in the middle.
> > > > But as a user of firmware class, what should
> now my
> > > fw_entry structure be?
> > > > const struct firmware *fw_entry or,
> > > > struct firmware *fw_entry - without the
> const ..
> > >
> > > You should leave it to be whatever it was before
> this
> > > patch, it has not
> > > changed anything now.
> >
> > Ok, However this patch has changed the
> release_firmware,
> > -release_firmware(const struct firmware *fw)
> > +release_firmware(struct firmware *fw)
>
> Does your code now complain about a warning?  If so,
> do you have a
> pointer to it?

Yes, code now has warnings, I have something like,
const struct firmware *fw_entry; declared in my header file,
and use it as,
request_firmware(&kim_gdata->fw_entry, bts_scr_name,
&kim_gdata->kim_pdev->dev);
and then I get warnings at,
release_firmware(kim_gdata->fw_entry);

You want me to have a pointer to &kw_gdata->fw_entry which is const ?
as in
const struct firmware **fw_const_ptr;
fw_const_ptr = &kim_gdata->fw_entry; ?


> thanks,
>
> greg k-h
> --
> To unsubscribe from this list: send the line "unsubscribe
> linux-kernel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
>


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/