linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/3] parser: add unsigned int parser
@ 2021-01-28  7:13 bingjingc
  2021-01-28 21:24 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: bingjingc @ 2021-01-28  7:13 UTC (permalink / raw)
  To: viro, jack, jack, axboe, linux-fsdevel
  Cc: linux-kernel, cccheng, bingjingc, robbieko, willy, rdunlap

From: BingJing Chang <bingjingc@synology.com>

Will be used by fs parsing options & fix kernel-doc typos

Reviewed-by: Robbie Ko<robbieko@synology.com>
Reviewed-by: Chung-Chiang Cheng <cccheng@synology.com>
Reviewed-by: Matthew Wilcox <willy@infradead.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: BingJing Chang <bingjingc@synology.com>
---
 include/linux/parser.h |  1 +
 lib/parser.c           | 44 +++++++++++++++++++++++++++++++++-----------
 2 files changed, 34 insertions(+), 11 deletions(-)

diff --git a/include/linux/parser.h b/include/linux/parser.h
index 89e2b23..dd79f45 100644
--- a/include/linux/parser.h
+++ b/include/linux/parser.h
@@ -29,6 +29,7 @@ typedef struct {
 
 int match_token(char *, const match_table_t table, substring_t args[]);
 int match_int(substring_t *, int *result);
+int match_uint(substring_t *s, unsigned int *result);
 int match_u64(substring_t *, u64 *result);
 int match_octal(substring_t *, int *result);
 int match_hex(substring_t *, int *result);
diff --git a/lib/parser.c b/lib/parser.c
index f5b3e5d..f2b9a8e 100644
--- a/lib/parser.c
+++ b/lib/parser.c
@@ -11,7 +11,7 @@
 #include <linux/string.h>
 
 /**
- * match_one: - Determines if a string matches a simple pattern
+ * match_one - Determines if a string matches a simple pattern
  * @s: the string to examine for presence of the pattern
  * @p: the string containing the pattern
  * @args: array of %MAX_OPT_ARGS &substring_t elements. Used to return match
@@ -89,7 +89,7 @@ static int match_one(char *s, const char *p, substring_t args[])
 }
 
 /**
- * match_token: - Find a token (and optional args) in a string
+ * match_token - Find a token (and optional args) in a string
  * @s: the string to examine for token/argument pairs
  * @table: match_table_t describing the set of allowed option tokens and the
  * arguments that may be associated with them. Must be terminated with a
@@ -114,7 +114,7 @@ int match_token(char *s, const match_table_t table, substring_t args[])
 EXPORT_SYMBOL(match_token);
 
 /**
- * match_number: scan a number in the given base from a substring_t
+ * match_number - scan a number in the given base from a substring_t
  * @s: substring to be scanned
  * @result: resulting integer on success
  * @base: base to use when converting string
@@ -147,7 +147,7 @@ static int match_number(substring_t *s, int *result, int base)
 }
 
 /**
- * match_u64int: scan a number in the given base from a substring_t
+ * match_u64int - scan a number in the given base from a substring_t
  * @s: substring to be scanned
  * @result: resulting u64 on success
  * @base: base to use when converting string
@@ -174,7 +174,7 @@ static int match_u64int(substring_t *s, u64 *result, int base)
 }
 
 /**
- * match_int: - scan a decimal representation of an integer from a substring_t
+ * match_int - scan a decimal representation of an integer from a substring_t
  * @s: substring_t to be scanned
  * @result: resulting integer on success
  *
@@ -188,8 +188,30 @@ int match_int(substring_t *s, int *result)
 }
 EXPORT_SYMBOL(match_int);
 
+/*
+ * match_uint - scan a decimal representation of an integer from a substring_t
+ * @s: substring_t to be scanned
+ * @result: resulting integer on success
+ *
+ * Description: Attempts to parse the &substring_t @s as a decimal integer. On
+ * success, sets @result to the integer represented by the string and returns 0.
+ * Returns -ENOMEM, -EINVAL, or -ERANGE on failure.
+ */
+int match_uint(substring_t *s, unsigned int *result)
+{
+	int err = -ENOMEM;
+	char *buf = match_strdup(s);
+
+	if (buf) {
+		err = kstrtouint(buf, 10, result);
+		kfree(buf);
+	}
+	return err;
+}
+EXPORT_SYMBOL(match_uint);
+
 /**
- * match_u64: - scan a decimal representation of a u64 from
+ * match_u64 - scan a decimal representation of a u64 from
  *                  a substring_t
  * @s: substring_t to be scanned
  * @result: resulting unsigned long long on success
@@ -206,7 +228,7 @@ int match_u64(substring_t *s, u64 *result)
 EXPORT_SYMBOL(match_u64);
 
 /**
- * match_octal: - scan an octal representation of an integer from a substring_t
+ * match_octal - scan an octal representation of an integer from a substring_t
  * @s: substring_t to be scanned
  * @result: resulting integer on success
  *
@@ -221,7 +243,7 @@ int match_octal(substring_t *s, int *result)
 EXPORT_SYMBOL(match_octal);
 
 /**
- * match_hex: - scan a hex representation of an integer from a substring_t
+ * match_hex - scan a hex representation of an integer from a substring_t
  * @s: substring_t to be scanned
  * @result: resulting integer on success
  *
@@ -236,7 +258,7 @@ int match_hex(substring_t *s, int *result)
 EXPORT_SYMBOL(match_hex);
 
 /**
- * match_wildcard: - parse if a string matches given wildcard pattern
+ * match_wildcard - parse if a string matches given wildcard pattern
  * @pattern: wildcard pattern
  * @str: the string to be parsed
  *
@@ -287,7 +309,7 @@ bool match_wildcard(const char *pattern, const char *str)
 EXPORT_SYMBOL(match_wildcard);
 
 /**
- * match_strlcpy: - Copy the characters from a substring_t to a sized buffer
+ * match_strlcpy - Copy the characters from a substring_t to a sized buffer
  * @dest: where to copy to
  * @src: &substring_t to copy
  * @size: size of destination buffer
@@ -310,7 +332,7 @@ size_t match_strlcpy(char *dest, const substring_t *src, size_t size)
 EXPORT_SYMBOL(match_strlcpy);
 
 /**
- * match_strdup: - allocate a new string with the contents of a substring_t
+ * match_strdup - allocate a new string with the contents of a substring_t
  * @s: &substring_t to copy
  *
  * Description: Allocates and returns a string filled with the contents of
-- 
2.7.4


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

* Re: [PATCH v2 1/3] parser: add unsigned int parser
  2021-01-28  7:13 [PATCH v2 1/3] parser: add unsigned int parser bingjingc
@ 2021-01-28 21:24 ` Randy Dunlap
       [not found]   ` <6862f3e8-5eb6-4364-a05e-d4ad23d1d37d@Mail>
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2021-01-28 21:24 UTC (permalink / raw)
  To: bingjingc, viro, jack, jack, axboe, linux-fsdevel
  Cc: linux-kernel, cccheng, robbieko, willy

On 1/27/21 11:13 PM, bingjingc wrote:
> From: BingJing Chang <bingjingc@synology.com>
> 
> Will be used by fs parsing options & fix kernel-doc typos
> 
> Reviewed-by: Robbie Ko<robbieko@synology.com>
> Reviewed-by: Chung-Chiang Cheng <cccheng@synology.com>
> Reviewed-by: Matthew Wilcox <willy@infradead.org>
> Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

You should drop my Reviewed-by: also, until I explicitly
reply with that.

> Signed-off-by: BingJing Chang <bingjingc@synology.com>
> ---
>  include/linux/parser.h |  1 +
>  lib/parser.c           | 44 +++++++++++++++++++++++++++++++++-----------
>  2 files changed, 34 insertions(+), 11 deletions(-)

The kernel-doc changes do look good. :)

thanks.
-- 
~Randy


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

* Re: [PATCH v2 1/3] parser: add unsigned int parser
       [not found]   ` <6862f3e8-5eb6-4364-a05e-d4ad23d1d37d@Mail>
@ 2021-01-29  6:07     ` bingjing chang
  0 siblings, 0 replies; 3+ messages in thread
From: bingjing chang @ 2021-01-29  6:07 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Al Viro, Jan Kara, Jan Kara, Jens Axboe, linux-fsdevel,
	linux-kernel, cccheng, robbieko, Matthew Wilcox, bingjingc

Hi Randy,

Thank you for talking to me the correct kernel-doc format. :)

I also split the cleanup of kernel doc comments into an independent
patch due to Jan's comments and submitted it. Thank you.

bingjingc <bingjingc@synology.com> 於 2021年1月29日 週五 下午1:51寫道:
>
> [loop bxxxjxxg@gmail.com] in order to reply in plain-text
> Randy Dunlap <rdunlap@infradead.org> 於 2021-01-29 05:26 寫道:
>
> On 1/27/21 11:13 PM, bingjingc wrote:
> > From: BingJing Chang <bingjingc@synology.com>
> >
> > Will be used by fs parsing options & fix kernel-doc typos
> >
> > Reviewed-by: Robbie Ko<robbieko@synology.com>
> > Reviewed-by: Chung-Chiang Cheng <cccheng@synology.com>
> > Reviewed-by: Matthew Wilcox <willy@infradead.org>
> > Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
>
> You should drop my Reviewed-by: also, until I explicitly
> reply with that.
>
> > Signed-off-by: BingJing Chang <bingjingc@synology.com>
> > ---
> >  include/linux/parser.h |  1 +
> >  lib/parser.c           | 44 +++++++++++++++++++++++++++++++++-----------
> >  2 files changed, 34 insertions(+), 11 deletions(-)
>
> The kernel-doc changes do look good. :)
>
> thanks.
> --
> ~Randy
>

Thanks,
BingJing

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

end of thread, other threads:[~2021-01-29  6:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-28  7:13 [PATCH v2 1/3] parser: add unsigned int parser bingjingc
2021-01-28 21:24 ` Randy Dunlap
     [not found]   ` <6862f3e8-5eb6-4364-a05e-d4ad23d1d37d@Mail>
2021-01-29  6:07     ` bingjing chang

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).