All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] radix tree test suite: Parameter type completion
@ 2022-08-08 15:21 Xin Gao
  2022-08-08 16:48 ` Matthew Wilcox
  0 siblings, 1 reply; 2+ messages in thread
From: Xin Gao @ 2022-08-08 15:21 UTC (permalink / raw)
  To: willy; +Cc: linux-fsdevel, linux-kernel, Xin Gao

'unsigned int' is better than 'unsigned', which has several changes.

Signed-off-by: Xin Gao <gaoxin@cdjrlc.com>
---
 tools/testing/radix-tree/iteration_check.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/radix-tree/iteration_check.c b/tools/testing/radix-tree/iteration_check.c
index e9908bcb06dd..c53d5dd9d6de 100644
--- a/tools/testing/radix-tree/iteration_check.c
+++ b/tools/testing/radix-tree/iteration_check.c
@@ -162,7 +162,7 @@ static void *tag_entries_fn(void *arg)
 }
 
 /* This is a unit test for a bug found by the syzkaller tester */
-void iteration_test(unsigned order, unsigned test_duration)
+void iteration_test(unsigned int order, unsigned int test_duration)
 {
 	int i;
 
-- 
2.30.2


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

* Re: [PATCH] radix tree test suite: Parameter type completion
  2022-08-08 15:21 [PATCH] radix tree test suite: Parameter type completion Xin Gao
@ 2022-08-08 16:48 ` Matthew Wilcox
  0 siblings, 0 replies; 2+ messages in thread
From: Matthew Wilcox @ 2022-08-08 16:48 UTC (permalink / raw)
  To: Xin Gao; +Cc: linux-fsdevel, linux-kernel

On Mon, Aug 08, 2022 at 11:21:42PM +0800, Xin Gao wrote:
> 'unsigned int' is better than 'unsigned', which has several changes.

I don't agree that unsigned int is better than a plain unsigned.

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

end of thread, other threads:[~2022-08-08 16:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-08 15:21 [PATCH] radix tree test suite: Parameter type completion Xin Gao
2022-08-08 16:48 ` Matthew Wilcox

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.