blob: 87186b7495517e5f8e4f56ecc6bbaa4518b9e230 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
socket: 0.966
debug: 0.866
graphic: 0.816
network: 0.728
device: 0.684
performance: 0.592
semantic: 0.486
boot: 0.335
other: 0.321
vnc: 0.313
permissions: 0.191
KVM: 0.185
PID: 0.179
files: 0.171
nbd URI wrong export name (regression in qemu 9.1)
Description of problem:
qemu with an nbd URI seems to pass the wrong export name to the server, if the exportname is `.`. This seems
to be a regression in qemu 9.1, because it didn't happen in 9.0.
Steps to reproduce:
```
$ nbdkit -fv -U - null --run 'qemu-img info "nbd+unix:///.?socket=$unixsocket"'
...
nbdkit: null[1]: debug: null: open readonly=0 exportname="" tls=0
```
In qemu 9.0 this was correct:
```
nbdkit: null[1]: debug: null: open readonly=0 exportname="." tls=0
```
|