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


Groups > linux.kernel > #1406806 > unrolled thread

[PATCH] Fixing compilation error from file include/linux/page_idle.h

Started byshakilk1729@gmail.com
First post2016-05-25 12:20 +0200
Last post2016-05-25 18:20 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] Fixing compilation error from file include/linux/page_idle.h shakilk1729@gmail.com - 2016-05-25 12:20 +0200
    Re: [PATCH] Fixing compilation error from file  include/linux/page_idle.h "Shi, Yang" <yang.shi@linaro.org> - 2016-05-25 18:20 +0200

#1406806 — [PATCH] Fixing compilation error from file include/linux/page_idle.h

Fromshakilk1729@gmail.com
Date2016-05-25 12:20 +0200
Subject[PATCH] Fixing compilation error from file include/linux/page_idle.h
Message-ID<rCE4V-8dd-1@gated-at.bofh.it>
From: shakil khan <shakilk1729@gmail.com>

---
 include/linux/page_idle.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/linux/page_idle.h b/include/linux/page_idle.h
index 569c3a1..fec4027 100644
--- a/include/linux/page_idle.h
+++ b/include/linux/page_idle.h
@@ -48,7 +48,7 @@ static inline bool page_is_young(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return false;
 
 	return test_bit(PAGE_EXT_YOUNG, &page_ext->flags);
@@ -58,7 +58,7 @@ static inline void set_page_young(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return;
 
 	set_bit(PAGE_EXT_YOUNG, &page_ext->flags);
@@ -68,7 +68,7 @@ static inline bool test_and_clear_page_young(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return false;
 
 	return test_and_clear_bit(PAGE_EXT_YOUNG, &page_ext->flags);
@@ -78,7 +78,7 @@ static inline bool page_is_idle(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return false;
 
 	return test_bit(PAGE_EXT_IDLE, &page_ext->flags);
@@ -88,7 +88,7 @@ static inline void set_page_idle(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return;
 
 	set_bit(PAGE_EXT_IDLE, &page_ext->flags);
@@ -98,7 +98,7 @@ static inline void clear_page_idle(struct page *page)
 {
 	struct page_ext *page_ext = lookup_page_ext(page);
 
-	if (unlikely(!page_ext)
+	if (unlikely(!page_ext))
 		return;
 
 	clear_bit(PAGE_EXT_IDLE, &page_ext->flags);
-- 
2.7.4

Signed-off-by: Shakil A Khan <shakilk1729@gmail.com>

[toc] | [next] | [standalone]


#1407044 — Re: [PATCH] Fixing compilation error from file include/linux/page_idle.h

From"Shi, Yang" <yang.shi@linaro.org>
Date2016-05-25 18:20 +0200
SubjectRe: [PATCH] Fixing compilation error from file include/linux/page_idle.h
Message-ID<rCJHj-366-9@gated-at.bofh.it>
In reply to#1406806
On 5/25/2016 3:11 AM, shakilk1729@gmail.com wrote:
> From: shakil khan <shakilk1729@gmail.com>

Thanks for the patch, this issue had been fixed by Arnd.

Yang

>
> ---
>  include/linux/page_idle.h | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/include/linux/page_idle.h b/include/linux/page_idle.h
> index 569c3a1..fec4027 100644
> --- a/include/linux/page_idle.h
> +++ b/include/linux/page_idle.h
> @@ -48,7 +48,7 @@ static inline bool page_is_young(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return false;
>
>  	return test_bit(PAGE_EXT_YOUNG, &page_ext->flags);
> @@ -58,7 +58,7 @@ static inline void set_page_young(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return;
>
>  	set_bit(PAGE_EXT_YOUNG, &page_ext->flags);
> @@ -68,7 +68,7 @@ static inline bool test_and_clear_page_young(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return false;
>
>  	return test_and_clear_bit(PAGE_EXT_YOUNG, &page_ext->flags);
> @@ -78,7 +78,7 @@ static inline bool page_is_idle(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return false;
>
>  	return test_bit(PAGE_EXT_IDLE, &page_ext->flags);
> @@ -88,7 +88,7 @@ static inline void set_page_idle(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return;
>
>  	set_bit(PAGE_EXT_IDLE, &page_ext->flags);
> @@ -98,7 +98,7 @@ static inline void clear_page_idle(struct page *page)
>  {
>  	struct page_ext *page_ext = lookup_page_ext(page);
>
> -	if (unlikely(!page_ext)
> +	if (unlikely(!page_ext))
>  		return;
>
>  	clear_bit(PAGE_EXT_IDLE, &page_ext->flags);
>

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web