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


Groups > linux.kernel > #1657171 > unrolled thread

[PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi()

Started bySF Markus Elfring <elfring@users.sourceforge.net>
First post2017-06-04 23:10 +0200
Last post2017-06-05 20:00 +0200
Articles 8 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-04 23:10 +0200
    [PATCH 3/3] arm/xen: Adjust one function call together with a  variable assignment SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-04 23:10 +0200
      Re: [PATCH 3/3] arm/xen: Adjust one function call together with a  variable assignment Stefano Stabellini <sstabellini@kernel.org> - 2017-06-05 19:20 +0200
    [PATCH 2/3] arm/xen: Delete an error message for a failed memory  allocation in __set_phys_to_machine_multi() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-04 23:10 +0200
      Re: [PATCH 2/3] arm/xen: Delete an error message for a failed memory  allocation in __set_phys_to_machine_multi() Stefano Stabellini <sstabellini@kernel.org> - 2017-06-05 19:20 +0200
    [PATCH 1/3] arm/xen: Improve a size determination in  __set_phys_to_machine_multi() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-06-04 23:10 +0200
      Re: [PATCH 1/3] arm/xen: Improve a size determination in  __set_phys_to_machine_multi() Stefano Stabellini <sstabellini@kernel.org> - 2017-06-05 19:20 +0200
    Re: [PATCH 0/3] ARM-XEN: Adjustments for  __set_phys_to_machine_multi() Stefano Stabellini <sstabellini@kernel.org> - 2017-06-05 20:00 +0200

#1657171 — [PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-06-04 23:10 +0200
Subject[PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi()
Message-ID<tOKWB-1Yk-1@gated-at.bofh.it>
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 4 Jun 2017 22:45:54 +0200

Three update suggestions were taken into account
from static source code analysis.

Markus Elfring (3):
  Improve a size determination
  Delete an error message for a failed memory allocation
  Adjust one function call together with a variable assignment

 arch/arm/xen/p2m.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

-- 
2.13.0

[toc] | [next] | [standalone]


#1657172 — [PATCH 3/3] arm/xen: Adjust one function call together with a variable assignment

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-06-04 23:10 +0200
Subject[PATCH 3/3] arm/xen: Adjust one function call together with a variable assignment
Message-ID<tOKWB-1Yk-3@gated-at.bofh.it>
In reply to#1657171
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 4 Jun 2017 21:21:20 +0200

The script "checkpatch.pl" pointed information out like the following.

ERROR: do not use assignment in if condition

Thus fix the affected source code place.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/arm/xen/p2m.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
index f5f74ac637b9..e71eefa2e427 100644
--- a/arch/arm/xen/p2m.c
+++ b/arch/arm/xen/p2m.c
@@ -153,7 +153,8 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
 	p2m_entry->mfn = mfn;
 
 	write_lock_irqsave(&p2m_lock, irqflags);
-	if ((rc = xen_add_phys_to_mach_entry(p2m_entry)) < 0) {
+	rc = xen_add_phys_to_mach_entry(p2m_entry);
+	if (rc < 0) {
 		write_unlock_irqrestore(&p2m_lock, irqflags);
 		return false;
 	}
-- 
2.13.0

[toc] | [prev] | [next] | [standalone]


#1657969 — Re: [PATCH 3/3] arm/xen: Adjust one function call together with a variable assignment

FromStefano Stabellini <sstabellini@kernel.org>
Date2017-06-05 19:20 +0200
SubjectRe: [PATCH 3/3] arm/xen: Adjust one function call together with a variable assignment
Message-ID<tP3PA-5Lk-19@gated-at.bofh.it>
In reply to#1657172
On Sun, 4 Jun 2017, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sun, 4 Jun 2017 21:21:20 +0200
> 
> The script "checkpatch.pl" pointed information out like the following.
> 
> ERROR: do not use assignment in if condition
> 
> Thus fix the affected source code place.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

> ---
>  arch/arm/xen/p2m.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
> index f5f74ac637b9..e71eefa2e427 100644
> --- a/arch/arm/xen/p2m.c
> +++ b/arch/arm/xen/p2m.c
> @@ -153,7 +153,8 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
>  	p2m_entry->mfn = mfn;
>  
>  	write_lock_irqsave(&p2m_lock, irqflags);
> -	if ((rc = xen_add_phys_to_mach_entry(p2m_entry)) < 0) {
> +	rc = xen_add_phys_to_mach_entry(p2m_entry);
> +	if (rc < 0) {
>  		write_unlock_irqrestore(&p2m_lock, irqflags);
>  		return false;
>  	}
> -- 
> 2.13.0
> 

[toc] | [prev] | [next] | [standalone]


#1657173 — [PATCH 2/3] arm/xen: Delete an error message for a failed memory allocation in __set_phys_to_machine_multi()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-06-04 23:10 +0200
Subject[PATCH 2/3] arm/xen: Delete an error message for a failed memory allocation in __set_phys_to_machine_multi()
Message-ID<tOKWC-1Yk-17@gated-at.bofh.it>
In reply to#1657171
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 4 Jun 2017 21:12:36 +0200

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/arm/xen/p2m.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
index 11e78432b663..f5f74ac637b9 100644
--- a/arch/arm/xen/p2m.c
+++ b/arch/arm/xen/p2m.c
@@ -148,7 +148,6 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
-	if (!p2m_entry) {
-		pr_warn("cannot allocate xen_p2m_entry\n");
+	if (!p2m_entry)
 		return false;
-	}
+
 	p2m_entry->pfn = pfn;
 	p2m_entry->nr_pages = nr_pages;
 	p2m_entry->mfn = mfn;
-- 
2.13.0

[toc] | [prev] | [next] | [standalone]


#1657960 — Re: [PATCH 2/3] arm/xen: Delete an error message for a failed memory allocation in __set_phys_to_machine_multi()

FromStefano Stabellini <sstabellini@kernel.org>
Date2017-06-05 19:20 +0200
SubjectRe: [PATCH 2/3] arm/xen: Delete an error message for a failed memory allocation in __set_phys_to_machine_multi()
Message-ID<tP3Pz-5Lk-1@gated-at.bofh.it>
In reply to#1657173
On Sun, 4 Jun 2017, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sun, 4 Jun 2017 21:12:36 +0200
> 
> Omit an extra message for a memory allocation failure in this function.
> 
> This issue was detected by using the Coccinelle software.
> 
> Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>

> ---
>  arch/arm/xen/p2m.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
> index 11e78432b663..f5f74ac637b9 100644
> --- a/arch/arm/xen/p2m.c
> +++ b/arch/arm/xen/p2m.c
> @@ -148,7 +148,6 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
> -	if (!p2m_entry) {
> -		pr_warn("cannot allocate xen_p2m_entry\n");
> +	if (!p2m_entry)
>  		return false;
> -	}
> +
>  	p2m_entry->pfn = pfn;
>  	p2m_entry->nr_pages = nr_pages;
>  	p2m_entry->mfn = mfn;
> -- 
> 2.13.0
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
> 

[toc] | [prev] | [next] | [standalone]


#1657174 — [PATCH 1/3] arm/xen: Improve a size determination in __set_phys_to_machine_multi()

FromSF Markus Elfring <elfring@users.sourceforge.net>
Date2017-06-04 23:10 +0200
Subject[PATCH 1/3] arm/xen: Improve a size determination in __set_phys_to_machine_multi()
Message-ID<tOKWC-1Yk-19@gated-at.bofh.it>
In reply to#1657171
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 4 Jun 2017 20:50:55 +0200

Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 arch/arm/xen/p2m.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
index 0ed01f2d5ee4..11e78432b663 100644
--- a/arch/arm/xen/p2m.c
+++ b/arch/arm/xen/p2m.c
@@ -144,5 +144,5 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
 		return true;
 	}
 
-	p2m_entry = kzalloc(sizeof(struct xen_p2m_entry), GFP_NOWAIT);
+	p2m_entry = kzalloc(sizeof(*p2m_entry), GFP_NOWAIT);
 	if (!p2m_entry) {
-- 
2.13.0

[toc] | [prev] | [next] | [standalone]


#1657975 — Re: [PATCH 1/3] arm/xen: Improve a size determination in __set_phys_to_machine_multi()

FromStefano Stabellini <sstabellini@kernel.org>
Date2017-06-05 19:20 +0200
SubjectRe: [PATCH 1/3] arm/xen: Improve a size determination in __set_phys_to_machine_multi()
Message-ID<tP3PB-5Lk-35@gated-at.bofh.it>
In reply to#1657174
On Sun, 4 Jun 2017, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sun, 4 Jun 2017 20:50:55 +0200
> 
> Replace the specification of a data structure by a pointer dereference
> as the parameter for the operator "sizeof" to make the corresponding size
> determination a bit safer according to the Linux coding style convention.
> 
> Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>

Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
>  arch/arm/xen/p2m.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c
> index 0ed01f2d5ee4..11e78432b663 100644
> --- a/arch/arm/xen/p2m.c
> +++ b/arch/arm/xen/p2m.c
> @@ -144,5 +144,5 @@ bool __set_phys_to_machine_multi(unsigned long pfn,
>  		return true;
>  	}
>  
> -	p2m_entry = kzalloc(sizeof(struct xen_p2m_entry), GFP_NOWAIT);
> +	p2m_entry = kzalloc(sizeof(*p2m_entry), GFP_NOWAIT);
>  	if (!p2m_entry) {
> -- 
> 2.13.0
> 

[toc] | [prev] | [next] | [standalone]


#1658042 — Re: [PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi()

FromStefano Stabellini <sstabellini@kernel.org>
Date2017-06-05 20:00 +0200
SubjectRe: [PATCH 0/3] ARM-XEN: Adjustments for __set_phys_to_machine_multi()
Message-ID<tP4sh-61H-7@gated-at.bofh.it>
In reply to#1657171
On Sun, 4 Jun 2017, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Sun, 4 Jun 2017 22:45:54 +0200
> 
> Three update suggestions were taken into account
> from static source code analysis.
> 
> Markus Elfring (3):
>   Improve a size determination
>   Delete an error message for a failed memory allocation
>   Adjust one function call together with a variable assignment
> 
>  arch/arm/xen/p2m.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Thanks Markus, I queued them up for 4.13.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web