qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH RFC 2/3] linux-user: support netlink protocol NETLIN


From: Laurent Vivier
Subject: [Qemu-devel] [PATCH RFC 2/3] linux-user: support netlink protocol NETLINK_KOBJECT_UEVENT
Date: Sat, 30 Jan 2016 23:26:59 +0100

This is the protocol used by udevd to manage kernel events.

Signed-off-by: Laurent Vivier <address@hidden>
---
 linux-user/syscall.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index a1ed2f5..790ae49 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -2572,6 +2572,9 @@ static abi_long do_socket(int domain, int type, int 
protocol)
             case NETLINK_ROUTE:
                 fd_trans_register(ret, &target_netlink_route_trans);
                 break;
+            case NETLINK_KOBJECT_UEVENT:
+                /* nothing to do: messages are strings */
+                break;
             default:
                 close(ret);
                 ret = -EPFNOSUPPORT;
-- 
2.5.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]