Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.9 22 lines 447 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * VMware VMCI Driver 4 * 5 * Copyright (C) 2012 VMware, Inc. All rights reserved. 6 */ 7 8#ifndef _VMCI_ROUTE_H_ 9#define _VMCI_ROUTE_H_ 10 11#include <linux/vmw_vmci_defs.h> 12 13enum vmci_route { 14 VMCI_ROUTE_NONE, 15 VMCI_ROUTE_AS_HOST, 16 VMCI_ROUTE_AS_GUEST, 17}; 18 19int vmci_route(struct vmci_handle *src, const struct vmci_handle *dst, 20 bool from_guest, enum vmci_route *route); 21 22#endif /* _VMCI_ROUTE_H_ */