Re: [PATCH 6/9] staging: ion: remove struct page_info

2014-05-27 Thread Dan Carpenter
On Tue, May 27, 2014 at 11:36:07AM -0700, Mitchel Humpherys wrote:
> On Mon, May 26 2014 at 03:04:58 AM, Heesub Shin  
> wrote:
> > -static struct page_info *alloc_largest_available(struct ion_system_heap 
> > *heap,
> > -struct ion_buffer *buffer,
> > -unsigned long size,
> > -unsigned int max_order)
> > +static struct page *alloc_largest_available(struct ion_system_heap *heap,
> > +   struct ion_buffer *buffer,
> > +   unsigned long size,
> > +   unsigned int max_order)
> 
> Was this whitespace-only change intentional?

Yes.  It's correct.

Heesub changed "page_info" to "page" and that forced a re-alignment of
the parameters.

regards,
dan carpenter

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


Re: [PATCH 6/9] staging: ion: remove struct page_info

2014-05-27 Thread Mitchel Humpherys
On Mon, May 26 2014 at 03:04:58 AM, Heesub Shin  wrote:
> ION system heap uses a temporary list holding meta data on pages
> allocated to build scatter/gather table. Now that the pages are compound
> pages, we do not need to introduce a new data type redundantly.
>
> Signed-off-by: Heesub Shin 
> ---
>  drivers/staging/android/ion/ion_system_heap.c | 47 
> +--
>  1 file changed, 15 insertions(+), 32 deletions(-)
>
> diff --git a/drivers/staging/android/ion/ion_system_heap.c 
> b/drivers/staging/android/ion/ion_system_heap.c
> index 73a2e67..f0ae210 100644
> --- a/drivers/staging/android/ion/ion_system_heap.c
> +++ b/drivers/staging/android/ion/ion_system_heap.c
> @@ -51,11 +51,6 @@ struct ion_system_heap {
>   struct ion_page_pool **pools;
>  };
>  
> -struct page_info {
> - struct page *page;
> - struct list_head list;
> -};
> -
>  static struct page *alloc_buffer_page(struct ion_system_heap *heap,
> struct ion_buffer *buffer,
> unsigned long order)
> @@ -96,19 +91,14 @@ static void free_buffer_page(struct ion_system_heap *heap,
>  }
>  
>  
> -static struct page_info *alloc_largest_available(struct ion_system_heap 
> *heap,
> -  struct ion_buffer *buffer,
> -  unsigned long size,
> -  unsigned int max_order)
> +static struct page *alloc_largest_available(struct ion_system_heap *heap,
> + struct ion_buffer *buffer,
> + unsigned long size,
> + unsigned int max_order)

Was this whitespace-only change intentional?


-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 6/9] staging: ion: remove struct page_info

2014-05-27 Thread Mitchel Humpherys
On Mon, May 26 2014 at 03:04:58 AM, Heesub Shin heesub.s...@samsung.com wrote:
 ION system heap uses a temporary list holding meta data on pages
 allocated to build scatter/gather table. Now that the pages are compound
 pages, we do not need to introduce a new data type redundantly.

 Signed-off-by: Heesub Shin heesub.s...@samsung.com
 ---
  drivers/staging/android/ion/ion_system_heap.c | 47 
 +--
  1 file changed, 15 insertions(+), 32 deletions(-)

 diff --git a/drivers/staging/android/ion/ion_system_heap.c 
 b/drivers/staging/android/ion/ion_system_heap.c
 index 73a2e67..f0ae210 100644
 --- a/drivers/staging/android/ion/ion_system_heap.c
 +++ b/drivers/staging/android/ion/ion_system_heap.c
 @@ -51,11 +51,6 @@ struct ion_system_heap {
   struct ion_page_pool **pools;
  };
  
 -struct page_info {
 - struct page *page;
 - struct list_head list;
 -};
 -
  static struct page *alloc_buffer_page(struct ion_system_heap *heap,
 struct ion_buffer *buffer,
 unsigned long order)
 @@ -96,19 +91,14 @@ static void free_buffer_page(struct ion_system_heap *heap,
  }
  
  
 -static struct page_info *alloc_largest_available(struct ion_system_heap 
 *heap,
 -  struct ion_buffer *buffer,
 -  unsigned long size,
 -  unsigned int max_order)
 +static struct page *alloc_largest_available(struct ion_system_heap *heap,
 + struct ion_buffer *buffer,
 + unsigned long size,
 + unsigned int max_order)

Was this whitespace-only change intentional?


-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 6/9] staging: ion: remove struct page_info

2014-05-27 Thread Dan Carpenter
On Tue, May 27, 2014 at 11:36:07AM -0700, Mitchel Humpherys wrote:
 On Mon, May 26 2014 at 03:04:58 AM, Heesub Shin heesub.s...@samsung.com 
 wrote:
  -static struct page_info *alloc_largest_available(struct ion_system_heap 
  *heap,
  -struct ion_buffer *buffer,
  -unsigned long size,
  -unsigned int max_order)
  +static struct page *alloc_largest_available(struct ion_system_heap *heap,
  +   struct ion_buffer *buffer,
  +   unsigned long size,
  +   unsigned int max_order)
 
 Was this whitespace-only change intentional?

Yes.  It's correct.

Heesub changed page_info to page and that forced a re-alignment of
the parameters.

regards,
dan carpenter

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