git: e4d5b6dc3cd5 - main - linux(4): Fix typo `xatrr` in function name
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 29 Nov 2024 21:39:21 UTC
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=e4d5b6dc3cd51d16dcd0c72d2292b65e76b0f06a commit e4d5b6dc3cd51d16dcd0c72d2292b65e76b0f06a Author: Minseo Kim <kimminss0@outlook.kr> AuthorDate: 2024-11-17 13:42:07 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-11-29 21:38:35 +0000 linux(4): Fix typo `xatrr` in function name Correct `xatrr_to_extattr` to `xattr_to_extattr`. Signed-off-by: Minseo Kim <kimminss0@outlook.kr> Reviewed by: imp,emaste,markj Pull Request: https://github.com/freebsd/freebsd-src/pull/1533 --- sys/compat/linux/linux_xattr.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/compat/linux/linux_xattr.c b/sys/compat/linux/linux_xattr.c index 6979fff9c82d..2eec33f8ef93 100644 --- a/sys/compat/linux/linux_xattr.c +++ b/sys/compat/linux/linux_xattr.c @@ -98,7 +98,7 @@ error_to_xattrerror(int attrnamespace, int error) } static int -xatrr_to_extattr(const char *uattrname, int *attrnamespace, char *attrname) +xattr_to_extattr(const char *uattrname, int *attrnamespace, char *attrname) { char uname[LINUX_XATTR_NAME_MAX + 1], *dot; size_t len, cplen; @@ -255,7 +255,7 @@ removexattr(struct thread *td, struct removexattr_args *args) char attrname[LINUX_XATTR_NAME_MAX + 1]; int attrnamespace, error; - error = xatrr_to_extattr(args->name, &attrnamespace, attrname); + error = xattr_to_extattr(args->name, &attrnamespace, attrname); if (error != 0) return (error); if (args->path != NULL) @@ -312,7 +312,7 @@ getxattr(struct thread *td, struct getxattr_args *args) char attrname[LINUX_XATTR_NAME_MAX + 1]; int attrnamespace, error; - error = xatrr_to_extattr(args->name, &attrnamespace, attrname); + error = xattr_to_extattr(args->name, &attrnamespace, attrname); if (error != 0) return (error); if (args->path != NULL) @@ -378,7 +378,7 @@ setxattr(struct thread *td, struct setxattr_args *args) if ((args->flags & ~(LINUX_XATTR_FLAGS)) != 0 || args->flags == (LINUX_XATTR_FLAGS)) return (EINVAL); - error = xatrr_to_extattr(args->name, &attrnamespace, attrname); + error = xattr_to_extattr(args->name, &attrnamespace, attrname); if (error != 0) return (error);