All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
@ 2020-10-09 13:59 Miaohe Lin
  2020-10-09 14:10 ` Matthew Wilcox
  2020-10-09 14:16 ` David Hildenbrand
  0 siblings, 2 replies; 8+ messages in thread
From: Miaohe Lin @ 2020-10-09 13:59 UTC (permalink / raw)
  To: akpm, sfr, ziy, alexander.h.duyck, willy, osalvador,
	steven.price, ying.huang, yang.shi, david
  Cc: linux-mm, linux-kernel, linmiaohe

They are unused anymore.

Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
---
 include/linux/page-flags.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
index 4f6ba9379112..50cbf5e931bc 100644
--- a/include/linux/page-flags.h
+++ b/include/linux/page-flags.h
@@ -363,8 +363,7 @@ PAGEFLAG(SwapBacked, swapbacked, PF_NO_TAIL)
  * for its own purposes.
  * - PG_private and PG_private_2 cause releasepage() and co to be invoked
  */
-PAGEFLAG(Private, private, PF_ANY) __SETPAGEFLAG(Private, private, PF_ANY)
-	__CLEARPAGEFLAG(Private, private, PF_ANY)
+PAGEFLAG(Private, private, PF_ANY)
 PAGEFLAG(Private2, private_2, PF_ANY) TESTSCFLAG(Private2, private_2, PF_ANY)
 PAGEFLAG(OwnerPriv1, owner_priv_1, PF_ANY)
 	TESTCLEARFLAG(OwnerPriv1, owner_priv_1, PF_ANY)
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
  2020-10-09 13:59 [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate Miaohe Lin
@ 2020-10-09 14:10 ` Matthew Wilcox
  2020-10-09 14:16 ` David Hildenbrand
  1 sibling, 0 replies; 8+ messages in thread
From: Matthew Wilcox @ 2020-10-09 14:10 UTC (permalink / raw)
  To: Miaohe Lin
  Cc: akpm, sfr, ziy, alexander.h.duyck, osalvador, steven.price,
	ying.huang, yang.shi, david, linux-mm, linux-kernel

On Fri, Oct 09, 2020 at 09:59:14AM -0400, Miaohe Lin wrote:
> They are unused anymore.
> 
> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>

Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
  2020-10-09 13:59 [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate Miaohe Lin
  2020-10-09 14:10 ` Matthew Wilcox
@ 2020-10-09 14:16 ` David Hildenbrand
  1 sibling, 0 replies; 8+ messages in thread
From: David Hildenbrand @ 2020-10-09 14:16 UTC (permalink / raw)
  To: Miaohe Lin, akpm, sfr, ziy, alexander.h.duyck, willy, osalvador,
	steven.price, ying.huang, yang.shi
  Cc: linux-mm, linux-kernel

On 09.10.20 15:59, Miaohe Lin wrote:
> They are unused anymore.

-EINVAL, sentence does not make sense :)

"They are not used anymore."
"They are unused ."

Reviewed-by: David Hildenbrand <david@redhat.com>

> 
> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
> ---
>  include/linux/page-flags.h | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
> index 4f6ba9379112..50cbf5e931bc 100644
> --- a/include/linux/page-flags.h
> +++ b/include/linux/page-flags.h
> @@ -363,8 +363,7 @@ PAGEFLAG(SwapBacked, swapbacked, PF_NO_TAIL)
>   * for its own purposes.
>   * - PG_private and PG_private_2 cause releasepage() and co to be invoked
>   */
> -PAGEFLAG(Private, private, PF_ANY) __SETPAGEFLAG(Private, private, PF_ANY)
> -	__CLEARPAGEFLAG(Private, private, PF_ANY)
> +PAGEFLAG(Private, private, PF_ANY)
>  PAGEFLAG(Private2, private_2, PF_ANY) TESTSCFLAG(Private2, private_2, PF_ANY)
>  PAGEFLAG(OwnerPriv1, owner_priv_1, PF_ANY)
>  	TESTCLEARFLAG(OwnerPriv1, owner_priv_1, PF_ANY)
> 


-- 
Thanks,

David / dhildenb


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
@ 2020-10-12  2:10 ` linmiaohe
  0 siblings, 0 replies; 8+ messages in thread
From: linmiaohe @ 2020-10-12  2:10 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-mm, linux-kernel, akpm, sfr, ziy, alexander.h.duyck, willy,
	osalvador, steven.price, ying.huang, yang.shi

David Hildenbrand <david@redhat.com> wrote:
>> Am 10.10.2020 um 03:53 schrieb linmiaohe <linmiaohe@huawei.com>:
>> 
>> David Hildenbrand <david@redhat.com> wrote:
>>>> On 09.10.20 15:59, Miaohe Lin wrote:
>>>> They are unused anymore.
>>> 
>>> -EINVAL, sentence does not make sense :)
>>> 
>>> "They are not used anymore."
>>> "They are unused ."
>> 
>> My poor English. ;) Will change it in v2 soon. Many Thanks.
>
>You got it right in the subject :)
>
>No need to resend - Andrew can fixup when applying!
>

Many thanks for your kindly remind. :)

>Cheers!
>
>> 
>>> 
>>> Reviewed-by: David Hildenbrand <david@redhat.com>
>>> 



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
@ 2020-10-12  2:10 ` linmiaohe
  0 siblings, 0 replies; 8+ messages in thread
From: linmiaohe @ 2020-10-12  2:10 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-mm, linux-kernel, akpm, sfr, ziy, alexander.h.duyck, willy,
	osalvador, steven.price, ying.huang, yang.shi

David Hildenbrand <david@redhat.com> wrote:
>> Am 10.10.2020 um 03:53 schrieb linmiaohe <linmiaohe@huawei.com>:
>> 
>> David Hildenbrand <david@redhat.com> wrote:
>>>> On 09.10.20 15:59, Miaohe Lin wrote:
>>>> They are unused anymore.
>>> 
>>> -EINVAL, sentence does not make sense :)
>>> 
>>> "They are not used anymore."
>>> "They are unused ."
>> 
>> My poor English. ;) Will change it in v2 soon. Many Thanks.
>
>You got it right in the subject :)
>
>No need to resend - Andrew can fixup when applying!
>

Many thanks for your kindly remind. :)

>Cheers!
>
>> 
>>> 
>>> Reviewed-by: David Hildenbrand <david@redhat.com>
>>> 



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
  2020-10-10  1:53 ` linmiaohe
  (?)
@ 2020-10-10 12:56 ` David Hildenbrand
  -1 siblings, 0 replies; 8+ messages in thread
From: David Hildenbrand @ 2020-10-10 12:56 UTC (permalink / raw)
  To: linmiaohe
  Cc: David Hildenbrand, linux-mm, linux-kernel, akpm, sfr, ziy,
	alexander.h.duyck, willy, osalvador, steven.price, ying.huang,
	yang.shi



> Am 10.10.2020 um 03:53 schrieb linmiaohe <linmiaohe@huawei.com>:
> 
> David Hildenbrand <david@redhat.com> wrote:
>>> On 09.10.20 15:59, Miaohe Lin wrote:
>>> They are unused anymore.
>> 
>> -EINVAL, sentence does not make sense :)
>> 
>> "They are not used anymore."
>> "They are unused ."
> 
> My poor English. ;) Will change it in v2 soon. Many Thanks.

You got it right in the subject :)

No need to resend - Andrew can fixup when applying!

Cheers!

> 
>> 
>> Reviewed-by: David Hildenbrand <david@redhat.com>
>> 


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
@ 2020-10-10  1:53 ` linmiaohe
  0 siblings, 0 replies; 8+ messages in thread
From: linmiaohe @ 2020-10-10  1:53 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-mm, linux-kernel, akpm, sfr, ziy, alexander.h.duyck, willy,
	osalvador, steven.price, ying.huang, yang.shi

David Hildenbrand <david@redhat.com> wrote:
> On 09.10.20 15:59, Miaohe Lin wrote:
>> They are unused anymore.
>
>-EINVAL, sentence does not make sense :)
>
>"They are not used anymore."
>"They are unused ."

My poor English. ;) Will change it in v2 soon. Many Thanks.

>
>Reviewed-by: David Hildenbrand <david@redhat.com>
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate
@ 2020-10-10  1:53 ` linmiaohe
  0 siblings, 0 replies; 8+ messages in thread
From: linmiaohe @ 2020-10-10  1:53 UTC (permalink / raw)
  To: David Hildenbrand
  Cc: linux-mm, linux-kernel, akpm, sfr, ziy, alexander.h.duyck, willy,
	osalvador, steven.price, ying.huang, yang.shi

David Hildenbrand <david@redhat.com> wrote:
> On 09.10.20 15:59, Miaohe Lin wrote:
>> They are unused anymore.
>
>-EINVAL, sentence does not make sense :)
>
>"They are not used anymore."
>"They are unused ."

My poor English. ;) Will change it in v2 soon. Many Thanks.

>
>Reviewed-by: David Hildenbrand <david@redhat.com>
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-10-12  2:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-09 13:59 [PATCH] page-flags: Remove unused __[Set|Clear]PagePrivate Miaohe Lin
2020-10-09 14:10 ` Matthew Wilcox
2020-10-09 14:16 ` David Hildenbrand
2020-10-10  1:53 linmiaohe
2020-10-10  1:53 ` linmiaohe
2020-10-10 12:56 ` David Hildenbrand
2020-10-12  2:10 linmiaohe
2020-10-12  2:10 ` linmiaohe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.