mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
libbeauty: Introduce syscall_arg__strtoul_strarrays()
To allow going from string to integer for 'struct strarrays'. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Luis Cláudio Gonçalves <lclaudio@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-b1ia3xzcy72hv0u4m168fcd0@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
dcc6854215
commit
1a8a90b823
2 changed files with 8 additions and 0 deletions
|
@ -540,6 +540,11 @@ bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *ar
|
||||||
return strarray__strtoul(arg->parm, bf, size, ret);
|
return strarray__strtoul(arg->parm, bf, size, ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret)
|
||||||
|
{
|
||||||
|
return strarrays__strtoul(arg->parm, bf, size, ret);
|
||||||
|
}
|
||||||
|
|
||||||
size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg)
|
size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct syscall_arg *arg)
|
||||||
{
|
{
|
||||||
return strarray__scnprintf_flags(arg->parm, bf, size, arg->show_string_prefix, arg->val);
|
return strarray__scnprintf_flags(arg->parm, bf, size, arg->show_string_prefix, arg->val);
|
||||||
|
|
|
@ -125,6 +125,9 @@ size_t syscall_arg__scnprintf_strarray_flags(char *bf, size_t size, struct sysca
|
||||||
bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret);
|
bool syscall_arg__strtoul_strarray(char *bf, size_t size, struct syscall_arg *arg, u64 *ret);
|
||||||
#define STUL_STRARRAY syscall_arg__strtoul_strarray
|
#define STUL_STRARRAY syscall_arg__strtoul_strarray
|
||||||
|
|
||||||
|
bool syscall_arg__strtoul_strarrays(char *bf, size_t size, struct syscall_arg *arg, u64 *ret);
|
||||||
|
#define STUL_STRARRAYS syscall_arg__strtoul_strarrays
|
||||||
|
|
||||||
size_t syscall_arg__scnprintf_x86_irq_vectors(char *bf, size_t size, struct syscall_arg *arg);
|
size_t syscall_arg__scnprintf_x86_irq_vectors(char *bf, size_t size, struct syscall_arg *arg);
|
||||||
#define SCA_X86_IRQ_VECTORS syscall_arg__scnprintf_x86_irq_vectors
|
#define SCA_X86_IRQ_VECTORS syscall_arg__scnprintf_x86_irq_vectors
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue