2015-08-07 19:44:39

by Joe Perches

[permalink] [raw]
Subject: [PATCH] checkpatch: Add __pmem to $Sparse annotations

commit 61031952f4c8 ("arch, x86: pmem api for ensuring durability
of persistent memory updates") added a new __pmem annotation for
sparse verification. Add __pmem to the $Sparse variable so
checkpatch can appropriately ignore uses of this attribute too.

Signed-off-by: Joe Perches <[email protected]>
---
scripts/checkpatch.pl | 1 +
1 file changed, 1 insertion(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index fd8e502..6362ec3 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -264,6 +264,7 @@ our $Sparse = qr{
__kernel|
__force|
__iomem|
+ __pmem|
__must_check|
__init_refok|
__kprobes|


2015-08-07 19:56:07

by Ross Zwisler

[permalink] [raw]
Subject: Re: [PATCH] checkpatch: Add __pmem to $Sparse annotations

On Fri, 2015-08-07 at 12:44 -0700, Joe Perches wrote:
> commit 61031952f4c8 ("arch, x86: pmem api for ensuring durability
> of persistent memory updates") added a new __pmem annotation for
> sparse verification. Add __pmem to the $Sparse variable so
> checkpatch can appropriately ignore uses of this attribute too.
>
> Signed-off-by: Joe Perches <[email protected]>

Reviewed-by: Ross Zwisler <[email protected]>

2015-08-07 20:37:36

by Andy Whitcroft

[permalink] [raw]
Subject: [Acked] [PATCH] checkpatch: Add __pmem to $Sparse annotations

On Fri, Aug 07, 2015 at 12:44:34PM -0700, Joe Perches wrote:
> commit 61031952f4c8 ("arch, x86: pmem api for ensuring durability
> of persistent memory updates") added a new __pmem annotation for
> sparse verification. Add __pmem to the $Sparse variable so
> checkpatch can appropriately ignore uses of this attribute too.
>
> Signed-off-by: Joe Perches <[email protected]>
> ---
> scripts/checkpatch.pl | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index fd8e502..6362ec3 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -264,6 +264,7 @@ our $Sparse = qr{
> __kernel|
> __force|
> __iomem|
> + __pmem|
> __must_check|
> __init_refok|
> __kprobes|

Acked-by: Andy Whitcroft <[email protected]>

-apw