search for: msg00036

Displaying 20 results from an estimated 21 matches for "msg00036".

Did you mean: msg00038
2018 Aug 13
1
Re: [PATCH v2 3/4] common: Add isaligned helper module
On 08/03/2018 02:28 PM, Nir Soffer wrote: > is_aligned (size, align) returns true if size is aligned to align, > assuming that align is power of 2. > > Suggested by Eric in > https://www.redhat.com/archives/libguestfs/2018-August/msg00036.html > --- > common/include/isaligned.h | 50 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 50 insertions(+) > create mode 100644 common/include/isaligned.h > > +/* Return true if size is a multiple of align. align must be power of 2. > + * > + * Suggested...
2018 Aug 03
0
[PATCH v2 3/4] common: Add isaligned helper module
is_aligned (size, align) returns true if size is aligned to align, assuming that align is power of 2. Suggested by Eric in https://www.redhat.com/archives/libguestfs/2018-August/msg00036.html --- common/include/isaligned.h | 50 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 common/include/isaligned.h diff --git a/common/include/isaligned.h b/common/include/isaligned.h new file mode 100644 index 0000000..468b624 --- /dev/null +++ b/com...
2024 Apr 08
1
Building R-4,3,3 fails
...-recorder nor outputs > \openout lines in its log file > Execution halted A Web search suggests that texi2dvi may output this message by mistake when the TeX installation is subject to a different problem: https://web.archive.org/web/20191006123002/https://lists.gnu.org/r/bug-texinfo/2016-10/msg00036.html Find the reshape.Rnw file and try running bin/R CMD Sweave path/to/reshape.Rnw. It should produce reshape.tex. When you run pdflatex reshape.tex, do you get a more useful error message? -- Best regards, Ivan
2014 Jul 11
1
Re: File not found by ext2_lookup
On 07/11/2014 09:27 PM, Richard W.M. Jones wrote: > See: > > https://www.redhat.com/archives/libguestfs/2014-July/msg00036.html > > for a couple of workarounds. > > Karanbir, should I file a bug about this? > > Rich. > yes please. I'm guessing this is a fall out of how the centos-release package is setup, but lets look. a bugreport would be good. -- Karanbir Singh, The CentOS Project,...
2014 Jul 11
2
File not found by ext2_lookup
Hello, I've been trying to clone one disk image (LVM) to another using virt-resize. Unfortunately I get the following error: # virt-resize /dev/vm/vm6 /dev/vm/vm7 supermin helper [00004ms] finished creating kernel supermin helper [00251ms] finished mke2fs <domain type='kvm'> supermin helper [00252ms] visiting /usr/lib64/guestfs/supermin.d supermin helper [00252ms] visiting
2016 Sep 19
2
How to set QEMU qcow2 l2-cache-size using libvirt xml?
...like to set the l2-cache-size in libvirt xml, but cannot make out how to do it. There are only hints in the comments at the above link and at http://wiki.libvirt.org/page/QEMUSwitchToLibvirt and an earlier unanswered question on this list https://www.redhat.com/archives/libvirt-users/2016-February/msg00036.html Has anyone successfully done this, and could you please give an example of the actual libvirt xml used? Thanks! Frank
2018 Aug 19
1
Re: [PATCH v3 3/4] common: Add isaligned helper module
On Sun, Aug 19, 2018 at 01:13:07AM +0300, Nir Soffer wrote: > is_aligned (size, align) returns true if size is aligned to align, > assuming that align is power of 2. > > Suggested by Eric Blake in > https://www.redhat.com/archives/libguestfs/2018-August/msg00036.html > --- > common/include/isaligned.h | 51 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 51 insertions(+) > create mode 100644 common/include/isaligned.h > > diff --git a/common/include/isaligned.h b/common/include/isaligned.h You have to add this file to common/...
2018 Aug 03
10
[PATCH v2 0/4] file: Zero for block devices and older file systems
This is the third version to support efficient zero for block devices on older kernels (e.g. RHEL 7.5), and file systems that do not support yet FALLOC_FS_ZERO_RANGE (e.g. NFS 4.2). Changes since v2: - Revert file_can_trim change, since it is too late to change the value after negotiation. Changing the capability dinamically may be useful internally, but it should be done via other means. -
2018 Aug 18
0
[PATCH v3 3/4] common: Add isaligned helper module
is_aligned (size, align) returns true if size is aligned to align, assuming that align is power of 2. Suggested by Eric Blake in https://www.redhat.com/archives/libguestfs/2018-August/msg00036.html --- common/include/isaligned.h | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 common/include/isaligned.h diff --git a/common/include/isaligned.h b/common/include/isaligned.h new file mode 100644 index 0000000..e693820 --- /dev/null +++ b/com...
2016 Sep 20
0
Re: How to set QEMU qcow2 l2-cache-size using libvirt xml?
...ache-size in libvirt xml, but cannot make out how to do it. >There are only hints in the comments at the above link and at >http://wiki.libvirt.org/page/QEMUSwitchToLibvirt > >and an earlier unanswered question on this list >https://www.redhat.com/archives/libvirt-users/2016-February/msg00036.html > >Has anyone successfully done this, and could you please give an example of the actual libvirt xml used? > If you don't see it in the docs [1] it's not supported. It would be trivial to add that option, though. Patches are welcome ;) If you don't feel like it, you can...
2024 Apr 08
1
Building R-4,3,3 fails
On Mon, 8 Apr 2024, Ivan Krylov wrote: > Questions about building R do get asked here and R-devel. Since you're > compiling a released version of R and we don't have an R-SIG-Slackware > mailing list, R-help sounds like the right place. Ivan, Okay: > What are the last lines of the build log, containing the error message? If > it's a LaTeX error, it may be that you
2019 Nov 12
1
[PATCH] tests: luks: Test the --key options.
Requires this series: https://www.redhat.com/archives/libguestfs/2019-November/msg00036.html
2018 Aug 18
7
[PATCH v3 0/4] file: Zero for block devices and older file systems
This version addresses some of the comments on v2. Changes since v2: - file_zero: Add missing space in function call - is_aligned: Assert that align is indeed a power of 2 - Spelling in commit message Not changed: - Eric commented that spacing was off: https://www.redhat.com/archives/libguestfs/2018-August/msg00113.html but I could not find anything wrong. - Eric asked if ioctl.h will cause
2010 Nov 02
0
[ANNOUNCE] libguestfs 1.6.0 tools for accessing and modifying VM disk images
...when the handle is closed. - virt-df --uuid option allows you to follow a domain across migration and renaming. - Translations of manual pages. Security - CVE-2010-3851 libguestfs: missing disk format specifier when adding a disk https://www.redhat.com/archives/libguestfs/2010-October/msg00036.html This is comprehensively fixed in this release, and the fix will be backported to the other stable branches after more testing. - virt-inspector no longer relies on untrusted guest code to list applications in some guests. New APIs download-offset, file-architecture, findfs-label...
2019 Jun 29
4
[libnbd] How close are we to declaring a stable API?
As the subject says, how close are we to being able to declare a stable API for libnbd? I believe these are the main topics: * Do we need to have an extra thread for writing? I'm unclear about whether b92392b717 (which allows the state machine to break during reply processing) means we definitely don't need threads. I imagine that two threads doing simultaneous send(2) and
2019 Nov 26
6
[PATCH options v2 0/3] options: Allow multiple and default --key parameters.
v1: https://www.redhat.com/archives/libguestfs/2019-November/msg00036.html
2018 Aug 19
9
[PATCH v3 0/4] file: Zero for block devices and older file systems
This version addresses comments on v3. Changes since v3: - Finally got spacing right (Eric) - Reorder includes (Richard) - Return 0 or -1 instead of r (Richard) - Add common/include/isaligned.h to Makefile.am (Richard) v3 was here: https://www.redhat.com/archives/libguestfs/2018-August/msg00177.html Nir Soffer (4): file: Avoid unsupported fallocate() calls file: Support zero without
2014 Sep 23
0
[PATCH 13/13] syntax-check: fix trailing_blank check
...dle is closed. - + - virt-df --uuid option allows you to follow a domain across migration and renaming. - + - Translations of manual pages. Security @@ -2911,7 +2911,7 @@ RELEASE NOTES FOR LIBGUESTFS 1.6 https://www.redhat.com/archives/libguestfs/2010-October/msg00036.html This is comprehensively fixed in this release, and the fix will be backported to the other stable branches after more testing. - + - virt-inspector no longer relies on untrusted guest code to list applications in some guests. @@ -2989,73 +2989,73 @@ RELEASE...
2014 Sep 23
27
[PATCH 00/13] syntax-check
Hi Rich, This series includes patches to make `make syntax-check` pass. Some of the fix require change to maint.mk, but the file is not in git repo. Is it intended? Thanks! Hu Tao (13): syntax-check: dirty hack to pass bindtextdomain check syntax-check: fix error_message_period check syntax-check: fix makefile_at_at_check syntax-check: fix prohibit_assert_without_use check
2019 Feb 22
5
[PATCH nbdkit v3 0/4] Add linuxdisk plugin.
For v3 I reimplemented this using mke2fs -d. This obviously makes the implementation a whole lot simpler, but cannot support multiple directory merging. Patches 1-3 are the same as before. I've also reproduced the notes from v2 below. v2: - Fix inconsistent tab/space. - All 3 plugins now contain a block of text pointing to the other 2 plugins. - TMDIR -> TMPDIR - Unlink the