Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F171082023
D27048.id79059.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
873 B
Referenced Files
None
Subscribers
None
D27048.id79059.diff
View Options
Index: head/sys/compat/linux/linux_ioctl.c
===================================================================
--- head/sys/compat/linux/linux_ioctl.c
+++ head/sys/compat/linux/linux_ioctl.c
@@ -275,8 +275,8 @@
default:
/* XXX */
linux_msg(td,
- "ioctl fd=%d, cmd=0x%x ('%c',%d) is not implemented",
- args->fd, (int)(args->cmd & 0xffff),
+ "%s fd=%d, cmd=0x%x ('%c',%d) is not implemented",
+ __func__, args->fd, args->cmd,
(int)(args->cmd & 0xff00) >> 8,
(int)(args->cmd & 0xff));
break;
@@ -3670,8 +3670,8 @@
return (ENOTSUP);
default:
- linux_msg(td, "ioctl fd=%d, cmd=0x%x ('%c',%d) is not implemented",
- args->fd, (int)(args->cmd & 0xffff),
+ linux_msg(td, "%s fd=%d, cmd=0x%x ('%c',%d) is not implemented",
+ __func__, args->fd, args->cmd,
(int)(args->cmd & 0xff00) >> 8, (int)(args->cmd & 0xff));
break;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Sep 9, 2:30 PM (10 h, 5 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
38592616
Default Alt Text
D27048.id79059.diff (873 B)
Attached To
Mode
D27048: linux(4): Disambiguate identical ioctl errors in distinct paths
Attached
Detach File
Event Timeline
Log In to Comment