Displaying 20 results from an estimated 10000 matches similar to: "virConnectGetDomainCapabilities"
2023 Jan 13
1
virConnectGetDomainCapabilities
On 1/7/23 16:15, Simon Fairweather wrote:
> Hi
>
> Is there a php api version for this?
There is now:
https://gitlab.com/libvirt/libvirt-php/-/commit/af33dcf01243b81fe1d9b23ab105c1ba157cd9af
Michal
2023 Mar 23
2
Option Flags
Hi
Are the flags documented? can this function be used to specify same as virsh
undefine --nvram "name of VM"
libvirt_domain_undefine_flags($res, $flags)
[Since version (null)]
Function is used to undefine(with flags) the domain identified by it's
resource.
*@res [resource]*: libvirt domain resource, e.g. from
libvirt_domain_lookup_by_*()
*@flags [int]*: optional flags
2023 Mar 23
1
Option Flags
On 3/23/23 10:35, Simon Fairweather wrote:
> Hi?
>
> Are the flags documented? can this function be used to? specify? same
> as?virsh undefine --nvram "name of VM"
>
> libvirt_domain_undefine_flags($res, $flags)
>
> [Since version (null)]
>
> Function is used to undefine(with flags) the domain identified by it's
> resource.
>
> /@res
2023 Apr 04
1
Virtiofsd
On Tue, Apr 04, 2023 at 17:12:15 +0100, Simon Fairweather wrote:
> Hi
>
> In QEMU 8 virtiofsd has been removed in favor of the rust version. Which
> includes options that are not longer supported,
>
>
> Do you have a view on what should be used going forwards to support
> virtiofsd in libvirt with qemu 8?
>
> The options are showing as depreciated,
> -o
2023 Apr 04
1
Virtiofsd
Hi
In QEMU 8 virtiofsd has been removed in favor of the rust version. Which
includes options that are not longer supported,
Do you have a view on what should be used going forwards to support
virtiofsd in libvirt with qemu 8?
The options are showing as depreciated,
-o <compat-options>...
Options in a format compatible with the legacy implementation
[deprecated]
Rust
2023 Apr 30
1
PHP API
Hi Michal
Are there plans to implement snapshot create_as version of the following
function where XML could be passed?
https://github.com/libvirt/libvirt-php/blob/afe404b2cf4bb46cdd39c6ea4df1c7c65b2d0b1b/src/libvirt-snapshot.c#L105
Regards
Simon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2023 Mar 07
1
virNetSocketReadWire
What are the standard reasons for this to fail?
virNetSocketReadWire:1791 : End of file while reading data: Input/output
error
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvirt-users/attachments/20230307/7b318c84/attachment.htm>
2023 Mar 28
1
libnbd | Failed pipeline for master | 2db30279
Pipeline #819889104 has failed!
Project: libnbd ( https://gitlab.com/nbdkit/libnbd )
Branch: master ( https://gitlab.com/nbdkit/libnbd/-/commits/master )
Commit: 2db30279 ( https://gitlab.com/nbdkit/libnbd/-/commit/2db30279bad4f9923baa541008f5da11624d2d1f )
Commit Message: socket activation: set LISTEN_FDNAMES
Add LIST...
Commit Author: Laszlo Ersek ( https://gitlab.com/lersek )
Pipeline
2023 Mar 07
1
virNetSocketReadWire
On Tue, Mar 07, 2023 at 01:57:24PM +0000, Simon Fairweather wrote:
> What are the standard reasons for this to fail?
>
> virNetSocketReadWire:1791 : End of file while reading data: Input/output
> error
The socket connection to libvirtd / other daemons was abruptly
closed. Essentially you can almost always ignore this error
message as being mostly harmless.
With regards,
Daniel
--
2023 Sep 15
1
virtio-mem with virt-install to share memory between guest and host on-demand
Hi
I'm trying to Passthrough a GPU to a VM and have it still share its free
memory with the host (just like it would with virtio-balloon). Is this
something virtio-mem is capable of? I've tried to run it, but it
immediately took over 9GB of memory:
virt-install --name test --cpu
cell0.cpus=0,cell0.memory=4194304,cell1.cpus=1,cell1.memory=4194304
--memory
2023 Jul 09
1
Libnbd asynchronous API with epoll
(Sorry for the late reply, was a bit involved in a qemu bug last week ...)
On Fri, Jul 07, 2023 at 08:58:50AM +0000, Tage Johansson wrote:
> On 7/6/2023 7:06 PM, Nir Soffer wrote:
>
>
> - After calling for example aio_notify_read(3), can I know that the next
> reading from the file descriptor would block?
>
> No, you have to call again aio_get_direction() and
2023 Aug 07
1
[libnbd PATCH] golang: Optionally use gofmt on generated .go files
On Fri, Aug 04, 2023 at 09:29:48AM -0500, Eric Blake wrote:
> Combine my recent work on improving the generated Go output with
> Tage's work on using a canonical formatter for Rust. If gofmt is
> available during the build, then the generated .go files will now use
> TAB indents and have proper columnar alignment; if it is not
> available, the project still compiles.
>
>
2023 Jul 07
2
Libnbd asynchronous API with epoll
On 7/6/2023 7:06 PM, Nir Soffer wrote:
>
> - After calling for example aio_notify_read(3), can I know that the
> next reading from the file descriptor would block?
>
> No, you have to call again aio_get_direction() and poll again until
> the event happens.
>
Well, what I mean is:
After calling aio_notify_read, if aio_get_direction returns
AIO_DIRECTION_READ or
2023 Mar 09
2
[PATCH libnbd v3] lib/errors.c: Fix assert fail in exit path in multi-threaded code
When a highly multi-threaded program such as nbdcopy encounters an
error, there is a race condition in the library which can cause an
assertion failure and thus a core dump:
(1) An error occurs on one of the threads. nbdcopy calls exit(3).
(2) In lib/errors.c, the destructor calls pthread_key_delete.
(3) Another thread which is still running also encounters an error,
and inside libnbd the
2023 Mar 09
1
[PATCH libnbd v4] lib/errors.c: Fix assert fail in exit path in multi-threaded code
When a highly multi-threaded program such as nbdcopy encounters an
error, there is a race condition in the library which can cause an
assertion failure and thus a core dump:
(1) An error occurs on one of the threads. nbdcopy calls exit(3).
(2) In lib/errors.c, the destructor calls pthread_key_delete.
(3) Another thread which is still running also encounters an error,
and inside libnbd the
2023 Oct 18
0
libnbd | Failed pipeline for master | 8aa2f75c
Pipeline #1041333855 has failed!
Project: libnbd ( https://gitlab.com/nbdkit/libnbd )
Branch: master ( https://gitlab.com/nbdkit/libnbd/-/commits/master )
Commit: 8aa2f75c ( https://gitlab.com/nbdkit/libnbd/-/commit/8aa2f75cdfd1ab338b5e38334c44db816cc25614 )
Commit Message: rust: Build the examples
It's worth checking t...
Commit Author: Richard W_M_ Jones ( https://gitlab.com/rwmjones )
2013 Dec 12
5
[Bug 72651] New: [NV11] Hang during suspend/resume on Geforce 2 MX200 & MX400
https://bugs.freedesktop.org/show_bug.cgi?id=72651
Priority: medium
Bug ID: 72651
Assignee: nouveau at lists.freedesktop.org
Summary: [NV11] Hang during suspend/resume on Geforce 2 MX200 &
MX400
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: Linux (All)
2023 Aug 13
0
libnbd | Failed pipeline for master | 7f3b61d0
Pipeline #966081125 has failed!
Project: libnbd ( https://gitlab.com/nbdkit/libnbd )
Branch: master ( https://gitlab.com/nbdkit/libnbd/-/commits/master )
Commit: 7f3b61d0 ( https://gitlab.com/nbdkit/libnbd/-/commit/7f3b61d00f6dbc4ed3ad4232a68f3065109a9dcf )
Commit Message: podwrapper: Add --replace parameter
This allow...
Commit Author: Richard W_M_ Jones ( https://gitlab.com/rwmjones )
2023 Aug 22
0
libnbd | Failed pipeline for master | 4e891bdb
Pipeline #976539953 has failed!
Project: libnbd ( https://gitlab.com/nbdkit/libnbd )
Branch: master ( https://gitlab.com/nbdkit/libnbd/-/commits/master )
Commit: 4e891bdb ( https://gitlab.com/nbdkit/libnbd/-/commit/4e891bdb37b62d3a11fc32e9170ed2a5df4a16c5 )
Commit Message: ci: Update to latest lcitool, for FreeBSD
Yet ...
Commit Author: Eric Blake ( https://gitlab.com/ebblake )
Pipeline
2023 Mar 21
0
libnbd | Failed pipeline for master | 65631e5d
Pipeline #813094663 has failed!
Project: libnbd ( https://gitlab.com/nbdkit/libnbd )
Branch: master ( https://gitlab.com/nbdkit/libnbd/-/commits/master )
Commit: 65631e5d ( https://gitlab.com/nbdkit/libnbd/-/commit/65631e5dfff5d0b8f691aba1e838c83dceb621d0 )
Commit Message: lib/utils: try to placate attribute placement r...
Commit Author: Laszlo Ersek ( https://gitlab.com/lersek )
Pipeline