lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <52205F37.7080002@huawei.com>
Date:	Fri, 30 Aug 2013 17:00:39 +0800
From:	Jianguo Wu <wujianguo@...wei.com>
To:	Wanpeng Li <liwanp@...ux.vnet.ibm.com>
CC:	Andrew Morton <akpm@...ux-foundation.org>,
	Joonsoo Kim <iamjoonsoo.kim@....com>,
	<zhangyanfei@...fujitsu.com>, David Rientjes <rientjes@...gle.com>,
	KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>,
	Michal Hocko <mhocko@...e.cz>, <linux-mm@...ck.org>,
	<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] mm/vmalloc: use help function to get vmalloc area size

On 2013/8/30 16:49, Wanpeng Li wrote:

> On Fri, Aug 30, 2013 at 04:42:49PM +0800, Jianguo Wu wrote:
>> Use get_vm_area_size() to get vmalloc area's actual size without guard page.
>>
> 
> Do you see this?
> 
> http://marc.info/?l=linux-mm&m=137698172417316&w=2
> 

Hi Wanpeng,
Sorry for not notice your post, please ignore this patch.

Thanks.

>> Signed-off-by: Jianguo Wu <wujianguo@...wei.com>
>> ---
>> mm/vmalloc.c |   12 ++++++------
>> 1 files changed, 6 insertions(+), 6 deletions(-)
>>
>> diff --git a/mm/vmalloc.c b/mm/vmalloc.c
>> index 13a5495..abe13bc 100644
>> --- a/mm/vmalloc.c
>> +++ b/mm/vmalloc.c
>> @@ -1263,7 +1263,7 @@ void unmap_kernel_range(unsigned long addr, unsigned long size)
>> int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages)
>> {
>> 	unsigned long addr = (unsigned long)area->addr;
>> -	unsigned long end = addr + area->size - PAGE_SIZE;
>> +	unsigned long end = addr + get_vm_area_size(area);
>> 	int err;
>>
>> 	err = vmap_page_range(addr, end, prot, *pages);
>> @@ -1558,7 +1558,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
>> 	unsigned int nr_pages, array_size, i;
>> 	gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
>>
>> -	nr_pages = (area->size - PAGE_SIZE) >> PAGE_SHIFT;
>> +	nr_pages = get_vm_area_size(area) >> PAGE_SHIFT;
>> 	array_size = (nr_pages * sizeof(struct page *));
>>
>> 	area->nr_pages = nr_pages;
>> @@ -1990,7 +1990,7 @@ long vread(char *buf, char *addr, unsigned long count)
>>
>> 		vm = va->vm;
>> 		vaddr = (char *) vm->addr;
>> -		if (addr >= vaddr + vm->size - PAGE_SIZE)
>> +		if (addr >= vaddr + get_vm_area_size(vm))
>> 			continue;
>> 		while (addr < vaddr) {
>> 			if (count == 0)
>> @@ -2000,7 +2000,7 @@ long vread(char *buf, char *addr, unsigned long count)
>> 			addr++;
>> 			count--;
>> 		}
>> -		n = vaddr + vm->size - PAGE_SIZE - addr;
>> +		n = vaddr + get_vm_area_size(vm) - addr;
>> 		if (n > count)
>> 			n = count;
>> 		if (!(vm->flags & VM_IOREMAP))
>> @@ -2072,7 +2072,7 @@ long vwrite(char *buf, char *addr, unsigned long count)
>>
>> 		vm = va->vm;
>> 		vaddr = (char *) vm->addr;
>> -		if (addr >= vaddr + vm->size - PAGE_SIZE)
>> +		if (addr >= vaddr + get_vm_area_size(vm))
>> 			continue;
>> 		while (addr < vaddr) {
>> 			if (count == 0)
>> @@ -2081,7 +2081,7 @@ long vwrite(char *buf, char *addr, unsigned long count)
>> 			addr++;
>> 			count--;
>> 		}
>> -		n = vaddr + vm->size - PAGE_SIZE - addr;
>> +		n = vaddr + get_vm_area_size(vm) - addr;
>> 		if (n > count)
>> 			n = count;
>> 		if (!(vm->flags & VM_IOREMAP)) {
>> -- 
>> 1.7.1
>>
>>
>> --
>> To unsubscribe, send a message with 'unsubscribe linux-mm' in
>> the body to majordomo@...ck.org.  For more info on Linux MM,
>> see: http://www.linux-mm.org/ .
>> Don't email: <a href=mailto:"dont@...ck.org"> email@...ck.org </a>
> 
> --
> To unsubscribe, send a message with 'unsubscribe linux-mm' in
> the body to majordomo@...ck.org.  For more info on Linux MM,
> see: http://www.linux-mm.org/ .
> Don't email: <a href=mailto:"dont@...ck.org"> email@...ck.org </a>
> 
> 



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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ