Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1165541 > unrolled thread

Re: Possible broken MM code in dell-laptop.c?

Started byDarren Hart <dvhart@infradead.org>
First post2015-06-15 22:40 +0200
Last post2015-06-15 22:50 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Possible broken MM code in dell-laptop.c? Darren Hart <dvhart@infradead.org> - 2015-06-15 22:40 +0200
    Re: Possible broken MM code in dell-laptop.c? Pali Rohár <pali.rohar@gmail.com> - 2015-06-15 22:50 +0200

#1165541 — Re: Possible broken MM code in dell-laptop.c?

FromDarren Hart <dvhart@infradead.org>
Date2015-06-15 22:40 +0200
SubjectRe: Possible broken MM code in dell-laptop.c?
Message-ID<pBJkK-5Ub-13@gated-at.bofh.it>
On Sun, Jun 14, 2015 at 11:05:07AM +0200, 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);
> 	if (!bufferpage) {
> 		ret = -ENOMEM;
> 		goto fail_buffer;
> 	}
> 	buffer = page_address(bufferpage);
> 
> 	ret = dell_setup_rfkill();
> 
> 	if (ret) {
> 		pr_warn("Unable to setup rfkill\n");
> 		goto fail_rfkill;
> 	}
> ...
> fail_rfkill:
> 	free_page((unsigned long)bufferpage);
> fail_buffer:
> ...
> }
> 
> Then there is another part:
> 
> static void __exit dell_exit(void)
> {
> ...
> 	free_page((unsigned long)buffer);

I believe you are correct, and this should be bufferpage. Have you observed any
failures?

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

[toc] | [next] | [standalone]


#1165544

FromPali Rohár <pali.rohar@gmail.com>
Date2015-06-15 22:50 +0200
Message-ID<pBJuq-65B-1@gated-at.bofh.it>
In reply to#1165541

[Multipart message — attachments visible in raw view] — view raw

On Monday 15 June 2015 22:36:45 Darren Hart wrote:
> On Sun, Jun 14, 2015 at 11:05:07AM +0200, 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);
> > 	if (!bufferpage) {
> > 	
> > 		ret = -ENOMEM;
> > 		goto fail_buffer;
> > 	
> > 	}
> > 	buffer = page_address(bufferpage);
> > 	
> > 	ret = dell_setup_rfkill();
> > 	
> > 	if (ret) {
> > 	
> > 		pr_warn("Unable to setup rfkill\n");
> > 		goto fail_rfkill;
> > 	
> > 	}
> > 
> > ...
> > 
> > fail_rfkill:
> > 	free_page((unsigned long)bufferpage);
> > 
> > fail_buffer:
> > ...
> > }
> > 
> > Then there is another part:
> > 
> > static void __exit dell_exit(void)
> > {
> > ...
> > 
> > 	free_page((unsigned long)buffer);
> 
> I believe you are correct, and this should be bufferpage. Have you
> observed any failures?

Rmmoding dell-laptop.ko works fine. There is no error in dmesg. I think 
that buffer (and not bufferpage) should be passed to free_page(). So in 
my opinion problem is at fail_rfkill: label and not in dell_exit().

But somebody from linux-mm should look at it...

-- 
Pali Rohár
pali.rohar@gmail.com

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web