The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/vmware/vmci/vmci_queue_pair.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2018 VMware, Inc.
    3  *
    4  * SPDX-License-Identifier: (BSD-2-Clause OR GPL-2.0)
    5  *
    6  * $FreeBSD$
    7  */
    8 
    9 /* VMCI QueuePair API definition. */
   10 
   11 #ifndef _VMCI_QUEUE_PAIR_H_
   12 #define _VMCI_QUEUE_PAIR_H_
   13 
   14 #include "vmci_kernel_if.h"
   15 #include "vmci_queue.h"
   16 
   17 int     vmci_qp_guest_endpoints_init(void);
   18 void    vmci_qp_guest_endpoints_exit(void);
   19 void    vmci_qp_guest_endpoints_sync(void);
   20 void    vmci_qp_guest_endpoints_convert(bool to_local, bool device_reset);
   21 
   22 int     vmci_queue_pair_alloc(struct vmci_handle *handle,
   23             struct vmci_queue **produce_q, uint64_t produce_size,
   24             struct vmci_queue **consume_q, uint64_t consume_size,
   25             vmci_id peer, uint32_t flags, vmci_privilege_flags priv_flags);
   26 int     vmci_queue_pair_detach(struct vmci_handle handle);
   27 
   28 #endif /* !_VMCI_QUEUE_PAIR_H_ */

Cache object: 31471424498b5ba34affac7e0204ff6e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.