Re: 2.6-mm swapped kmalloc args.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Quoting Dave Jones <[email protected]>:
> Repeat after me Cris developers..  "Size, then flags."  :-)
> 
> aacraid suffers the same affliction.  Yay for type-unsafe interfaces.
> 
> Signed-off-by: Dave Jones <[email protected]>
> 
> 
> --- 2.6-mm/arch/cris/arch-v32/mm/intmem.c~	2005-07-09 00:13:54 -04:00
> +++ 2.6-mm/arch/cris/arch-v32/mm/intmem.c	2005-07-09 00:14:48 -04:00
> @@ -28,7 +28,7 @@ static void crisv32_intmem_init(void)
>  	static int initiated = 0;
>  	if (!initiated) {
>  		struct intmem_allocation* alloc =
> -		  (struct intmem_allocation*)kmalloc(GFP_KERNEL, sizeof *alloc);
> +		  (struct intmem_allocation*)kmalloc(sizeof *alloc, GFP_KERNEL);
>  		INIT_LIST_HEAD(&intmem_allocations);
>  		intmem_virtual = ioremap(MEM_INTMEM_START, MEM_INTMEM_SIZE);
>  		initiated = 1;
> @@ -57,7 +57,7 @@ void* crisv32_intmem_alloc(unsigned size
>  			if (allocation->size > size + alignment) {
>  				struct intmem_allocation* alloc =
>  					(struct intmem_allocation*)
> -					kmalloc(GFP_ATOMIC, sizeof *alloc);
> +					kmalloc(sizeof *alloc, GFP_ATOMIC);
>  				alloc->status = STATUS_FREE;
>  				alloc->size = allocation->size - size - alignment;
>  				alloc->offset = allocation->offset + size;
> @@ -66,7 +66,7 @@ void* crisv32_intmem_alloc(unsigned size
>  				if (alignment) {
>  					struct intmem_allocation* tmp;
>  					tmp = (struct intmem_allocation*)
> -						kmalloc(GFP_ATOMIC, sizeof *tmp);
> +						kmalloc(sizeof *tmp, GFP_ATOMIC);

What about also removing these void* to struct intmem_allocation* casts?

-- 
Greetings, Michael


Attachment: pgpWATJnqJnuT.pgp
Description: PGP signature


[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]
  Powered by Linux