Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1407044
| From | "Shi, Yang" <yang.shi@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] Fixing compilation error from file include/linux/page_idle.h |
| Date | 2016-05-25 18:20 +0200 |
| Message-ID | <rCJHj-366-9@gated-at.bofh.it> (permalink) |
| References | <rCE4V-8dd-1@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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);
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[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
csiph-web