Skip to content

Commit

Permalink
auto_update
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Apr 10, 2024
1 parent 6049d4b commit 7ae5d1e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions source/_posts/qemu/qemu后端写清除机制.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@

d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */
---
title: vhost_user协议
date: 2023-12-21 14:53:25
categories:
- [dpdk,网络开发]
tags:
- dpdk
- 网络开发
- virtio_net
- vhost_user
- vdpa
---
d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */

0 comments on commit 7ae5d1e

Please sign in to comment.