diff options
author | Akihiko Odaki <akihiko.odaki@daynix.com> | 2023-06-01 12:18:58 +0900 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2023-11-21 15:42:34 +0800 |
commit | 7d0fefdf81f5973334c344f6b8e1896c309dff66 (patch) | |
tree | 9fc658dc9ad19cf9d509d4d340f8fead4a71294f /include/net | |
parent | af9264da80073435fd78944bc5a46e695897d7e5 (diff) |
net: Provide MemReentrancyGuard * to qemu_new_nic()
Recently MemReentrancyGuard was added to DeviceState to record that the
device is engaging in I/O. The network device backend needs to update it
when delivering a packet to a device.
In preparation for such a change, add MemReentrancyGuard * as a
parameter of qemu_new_nic().
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Alexander Bulekov <alxndr@bu.edu>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/net.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/net.h b/include/net/net.h index 2fb1c9181c..24deea2dbd 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -159,6 +159,7 @@ NICState *qemu_new_nic(NetClientInfo *info, NICConf *conf, const char *model, const char *name, + MemReentrancyGuard *reentrancy_guard, void *opaque); void qemu_del_nic(NICState *nic); NetClientState *qemu_get_subqueue(NICState *nic, int queue_index); |