From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753907AbbFPHPg (ORCPT ); Tue, 16 Jun 2015 03:15:36 -0400 Received: from mail-wg0-f54.google.com ([74.125.82.54]:33086 "EHLO mail-wg0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751818AbbFPHP1 (ORCPT ); Tue, 16 Jun 2015 03:15:27 -0400 Date: Tue, 16 Jun 2015 09:15:23 +0200 From: Pali =?utf-8?B?Um9ow6Fy?= To: Michal Hocko , Darren Hart Cc: Hans de Goede , Ben Skeggs , Stuart Hayes , Matthew Garrett , Andrew Morton , platform-driver-x86@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: Possible broken MM code in dell-laptop.c? Message-ID: <20150616071523.GB5863@pali> References: <201506141105.07171@pali> <20150615211816.GC16138@dhcp22.suse.cz> <201506152327.59907@pali> <20150616063346.GA24296@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20150616063346.GA24296@dhcp22.suse.cz> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 16 June 2015 08:33:46 Michal Hocko wrote: > On Mon 15-06-15 23:27:59, Pali Rohár wrote: > > On Monday 15 June 2015 23:18:16 Michal Hocko wrote: > > > On Sun 14-06-15 11:05:07, Pali Rohár wrote: > > > > Hello, > > > > > > > > in drivers/platform/x86/dell-laptop.c is this part of code: > > > > > > > > static int __init dell_init(void) > > > > { > > > > ... > > > > > > > > /* > > > > > > > > * Allocate buffer below 4GB for SMI data--only 32-bit physical > > > > addr * is passed to SMI handler. > > > > */ > > > > > > > > bufferpage = alloc_page(GFP_KERNEL | GFP_DMA32); > > > > > > [...] > > > > > > > buffer = page_address(bufferpage); > > > > > > [...] > > > > > > > fail_rfkill: > > > > free_page((unsigned long)bufferpage); > > > > > > This one should be __free_page because it consumes struct page* and > > > it is the proper counter part for alloc_page. free_page, just to > > > make it confusing, consumes an address which has to be translated to > > > a struct page. > > > > > > I have no idea why the API has been done this way and yeah, it is > > > really confusing. > > > > > > [...] > > > > > > > static void __exit dell_exit(void) > > > > { > > > > ... > > > > > > > > free_page((unsigned long)buffer); > > > > So both, either: > > > > free_page((unsigned long)buffer); > > > > or > > > > __free_page(bufferpage); > > > > is correct? > > Yes. Although I would use __free_page variant as both seem to be > globally visible. > Michal, thank you for explaining this situation! Darren, I will prepare patch which will fix code and use __free_page(). (Btw, execution on fail_rfkill label caused kernel panic) -- Pali Rohár pali.rohar@gmail.com