* [PATCH] backends/hostmem: Fix block comments style (checkpatch.pl warnings)
@ 2024-01-29 18:31 Philippe Mathieu-Daudé
2024-01-30 7:14 ` Xiaoyao Li
0 siblings, 1 reply; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-01-29 18:31 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-trivial, David Hildenbrand, Igor Mammedov,
Philippe Mathieu-Daudé
While re-indenting code in host_memory_backend_memory_complete(),
we triggered various "Block comments use a leading /* on a separate
line" warnings from checkpatch.pl. Correct the comments style.
Fixes: e199f7ad4d ("backends: Simplify host_memory_backend_memory_complete()")
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
backends/hostmem.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/backends/hostmem.c b/backends/hostmem.c
index 30f69b2cb5..987f6f591e 100644
--- a/backends/hostmem.c
+++ b/backends/hostmem.c
@@ -344,9 +344,11 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
unsigned long lastbit = find_last_bit(backend->host_nodes, MAX_NODES);
/* lastbit == MAX_NODES means maxnode = 0 */
unsigned long maxnode = (lastbit + 1) % (MAX_NODES + 1);
- /* ensure policy won't be ignored in case memory is preallocated
+ /*
+ * Ensure policy won't be ignored in case memory is preallocated
* before mbind(). note: MPOL_MF_STRICT is ignored on hugepages so
- * this doesn't catch hugepage case. */
+ * this doesn't catch hugepage case.
+ */
unsigned flags = MPOL_MF_STRICT | MPOL_MF_MOVE;
int mode = backend->policy;
@@ -363,7 +365,8 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
return;
}
- /* We can have up to MAX_NODES nodes, but we need to pass maxnode+1
+ /*
+ * We can have up to MAX_NODES nodes, but we need to pass maxnode+1
* as argument to mbind() due to an old Linux bug (feature?) which
* cuts off the last specified node. This means backend->host_nodes
* must have MAX_NODES+1 bits available.
@@ -391,7 +394,8 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
}
}
#endif
- /* Preallocate memory after the NUMA policy has been instantiated.
+ /*
+ * Preallocate memory after the NUMA policy has been instantiated.
* This is necessary to guarantee memory is allocated with
* specified NUMA policy in place.
*/
--
2.41.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] backends/hostmem: Fix block comments style (checkpatch.pl warnings)
2024-01-29 18:31 [PATCH] backends/hostmem: Fix block comments style (checkpatch.pl warnings) Philippe Mathieu-Daudé
@ 2024-01-30 7:14 ` Xiaoyao Li
0 siblings, 0 replies; 2+ messages in thread
From: Xiaoyao Li @ 2024-01-30 7:14 UTC (permalink / raw)
To: Philippe Mathieu-Daudé, qemu-devel
Cc: qemu-trivial, David Hildenbrand, Igor Mammedov
On 1/30/2024 2:31 AM, Philippe Mathieu-Daudé wrote:
> While re-indenting code in host_memory_backend_memory_complete(),
> we triggered various "Block comments use a leading /* on a separate
> line" warnings from checkpatch.pl. Correct the comments style.
>
> Fixes: e199f7ad4d ("backends: Simplify host_memory_backend_memory_complete()")
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com>
> ---
> backends/hostmem.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/backends/hostmem.c b/backends/hostmem.c
> index 30f69b2cb5..987f6f591e 100644
> --- a/backends/hostmem.c
> +++ b/backends/hostmem.c
> @@ -344,9 +344,11 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
> unsigned long lastbit = find_last_bit(backend->host_nodes, MAX_NODES);
> /* lastbit == MAX_NODES means maxnode = 0 */
> unsigned long maxnode = (lastbit + 1) % (MAX_NODES + 1);
> - /* ensure policy won't be ignored in case memory is preallocated
> + /*
> + * Ensure policy won't be ignored in case memory is preallocated
> * before mbind(). note: MPOL_MF_STRICT is ignored on hugepages so
> - * this doesn't catch hugepage case. */
> + * this doesn't catch hugepage case.
> + */
> unsigned flags = MPOL_MF_STRICT | MPOL_MF_MOVE;
> int mode = backend->policy;
>
> @@ -363,7 +365,8 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
> return;
> }
>
> - /* We can have up to MAX_NODES nodes, but we need to pass maxnode+1
> + /*
> + * We can have up to MAX_NODES nodes, but we need to pass maxnode+1
> * as argument to mbind() due to an old Linux bug (feature?) which
> * cuts off the last specified node. This means backend->host_nodes
> * must have MAX_NODES+1 bits available.
> @@ -391,7 +394,8 @@ host_memory_backend_memory_complete(UserCreatable *uc, Error **errp)
> }
> }
> #endif
> - /* Preallocate memory after the NUMA policy has been instantiated.
> + /*
> + * Preallocate memory after the NUMA policy has been instantiated.
> * This is necessary to guarantee memory is allocated with
> * specified NUMA policy in place.
> */
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-30 7:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-29 18:31 [PATCH] backends/hostmem: Fix block comments style (checkpatch.pl warnings) Philippe Mathieu-Daudé
2024-01-30 7:14 ` Xiaoyao Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).