diff options
author | Xiong Zhou <jencce.kernel@gmail.com> | 2013-05-08 18:52:48 +0800 |
---|---|---|
committer | Karol Lewandowski <k.lewandowsk@samsung.com> | 2021-04-22 14:52:46 +0200 |
commit | 75b691d4611a24ae6edc317076e519eb5ab93077 (patch) | |
tree | f84e8f2f8b6f71cfb804c214812f9dff653cb19d | |
parent | c3d598f51af59826e25eecaf1555f9d7c17cf066 (diff) | |
download | linux-tizen-modules-75b691d4611a24ae6edc317076e519eb5ab93077.tar.gz linux-tizen-modules-75b691d4611a24ae6edc317076e519eb5ab93077.tar.bz2 linux-tizen-modules-75b691d4611a24ae6edc317076e519eb5ab93077.zip |
staging: android: logger: use kuid_t instead of uid_t
Use kuid_t instead of uid_t, to pass the UIDGID_STRICT_TYPE_CHECKS.
Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/android/logger.c | 4 | ||||
-rw-r--r-- | drivers/staging/android/logger.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/android/logger.c b/drivers/staging/android/logger.c index b040200..9bd8747 100644 --- a/drivers/staging/android/logger.c +++ b/drivers/staging/android/logger.c @@ -242,7 +242,7 @@ static ssize_t do_read_log_to_user(struct logger_log *log, * 'log->buffer' which contains the first entry readable by 'euid' */ static size_t get_next_entry_by_uid(struct logger_log *log, - size_t off, uid_t euid) + size_t off, kuid_t euid) { while (off != log->w_off) { struct logger_entry *entry; @@ -251,7 +251,7 @@ static size_t get_next_entry_by_uid(struct logger_log *log, entry = get_entry_header(log, off, &scratch); - if (entry->euid == euid) + if (uid_eq(entry->euid, euid)) return off; next_len = sizeof(struct logger_entry) + entry->len; diff --git a/drivers/staging/android/logger.h b/drivers/staging/android/logger.h index cc6bbd9..70af7d8 100644 --- a/drivers/staging/android/logger.h +++ b/drivers/staging/android/logger.h @@ -66,7 +66,7 @@ struct logger_entry { __s32 tid; __s32 sec; __s32 nsec; - uid_t euid; + kuid_t euid; char msg[0]; }; |