Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F156367905
D32598.id97283.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D32598.id97283.diff
View Options
Index: sys/compat/linuxkpi/common/include/linux/kernel.h
===================================================================
--- sys/compat/linuxkpi/common/include/linux/kernel.h
+++ sys/compat/linuxkpi/common/include/linux/kernel.h
@@ -393,6 +393,24 @@
return (0);
}
+static inline int
+kstrtou8(const char *cp, unsigned int base, u8 *res)
+{
+ char *end;
+ unsigned long temp;
+
+ *res = temp = strtoul(cp, &end, base);
+
+ /* skip newline character, if any */
+ if (*end == '\n')
+ end++;
+ if (*cp == 0 || *end != 0)
+ return (-EINVAL);
+ if (temp != (u8)temp)
+ return (-ERANGE);
+ return (0);
+}
+
static inline int
kstrtou16(const char *cp, unsigned int base, u16 *res)
{
@@ -484,6 +502,21 @@
return (kstrtobool(buf, res));
}
+static inline int
+kstrtou8_from_user(const char __user *s, size_t count, unsigned int base,
+ u8 *p)
+{
+ char buf[8] = {};
+
+ if (count > (sizeof(buf) - 1))
+ count = (sizeof(buf) - 1);
+
+ if (copy_from_user(buf, s, count))
+ return (-EFAULT);
+
+ return (kstrtou8(buf, base, p));
+}
+
#define min(x, y) ((x) < (y) ? (x) : (y))
#define max(x, y) ((x) > (y) ? (x) : (y))
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, May 14, 1:01 AM (1 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
33028101
Default Alt Text
D32598.id97283.diff (1 KB)
Attached To
Mode
D32598: LinuxKPI: add kstrtou8() and kstrtou8_from_user() to kernel.h
Attached
Detach File
Event Timeline
Log In to Comment