search for: listman

Displaying 20 results from an estimated 308 matches for "listman".

2001 Jun 15
2
more buffers
Running linux-2.4.6-pre3 with ext3-2.4-0.0.6 (yes -- it does patch cleanly) -- only been running a few days on ext3 -- first message I've seen. Jun 14 18:08:55 picard kernel: journal_commit_transaction: odd - more buffers ________________________________________ Michael D. Black Principal Engineer mblack@csihq.com 321-676-2923,x203 http://www.csihq.com Computer Science Innovations
2023 Feb 17
3
python: Avoid leaking py_array and py_args in event callbacks
Version 1 was here: https://listman.redhat.com/archives/libguestfs/2023-February/030732.html Following Eric's suggestion here: https://listman.redhat.com/archives/libguestfs/2023-February/030746.html let's decrement the reference of py_array right after adding it to the args. (This works even if args fails to be built)....
2023 Feb 17
2
[PATCH v3 0/2] python: Avoid leaking py_array and py_args in event callbacks
Version 1 was here: https://listman.redhat.com/archives/libguestfs/2023-February/030732.html (Ignore version 2 which had a mistake, this is version 3) Following Eric's suggestion here: https://listman.redhat.com/archives/libguestfs/2023-February/030746.html let's decrement the reference of py_array right after adding it...
2023 Mar 16
3
[V2V PATCH v4 0/2] convert_windows: add firstboot script to install drivers with pnputil
While messing around this script, I added one more tiny patch making wait-pnp log its output into the common log.txt file, as suggested by Richard here: https://listman.redhat.com/archives/libguestfs/2023-March/031023.html Discussion on v3: https://listman.redhat.com/archives/libguestfs/2023-March/031070.html v3 -> v4: * Remove unneeded line break from the script; * Add another small patch removing separate log file from wait-pnp script. Discussion on...
2003 Mar 07
1
start_transaction: Readonly filesystem error
On a 2.4.17 (MontaVista 2.1) kernel using ext3, I recently starting seeing the error EXT3-fs error (device ide1(22,1)) in start_transaction: Readonly filesystem EXT3-fs error (device ide1(22,1)) in ext3_delete_inode: Readonly filesystem on a file system within 10-20 seconds after remounting it r/o. Apparemtly a write is being deferred past the remount point and then runs into problems when it is
2001 Jan 15
3
quota on ext3 fs
hi everyone, i installed the ext3 fs on a test machine and tried to use quota on the ext3 filesystem. When i use the command quotaon /dev/hdb2 (the partition with the ext3 fs) i get the message: quotaon: using /home/quota.user on /dev/hdb2: Invalid argument. I created the quota.user and quota.group files and set the permissions to 600. I use quota-2.oopre3-7a, e2fsprogs-1.20-0ext3, kernel 2.2.18
2023 May 02
4
[libnbd PATCH v2 0/2] continue wrapping generated C code harder
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2172516 v1: https://listman.redhat.com/archives/libguestfs/2023-April/031375.html In v2, move the declaration of the "p" helper variable next to the top of the function. Thanks! Laszlo Laszlo Ersek (2): generator/C: print_wrapper: use helper variable for permitted state check generator/C: lib/api.c: inden...
2023 Mar 14
1
Changes in qcow2 not reflecting/visible
...complete output. Do not edit the output. export LIBGUESTFS_DEBUG=1 export LIBGUESTFS_TRACE=1 I have attached the debuglog.txt Please let me know if you need more information... Awaiting for a response. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libguestfs/attachments/20230314/af13b889/attachment-0001.htm> -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: debuglog.txt URL: <http://listman.redhat.com/archives/libguestfs/attachments/20230314/af13b889/attachment-00...
2023 Aug 30
1
[libnbd PATCH v9 5/7] rust: async: Add a couple of integration tests
...her platforms). So I spent a couple hours experimenting with whether I could use mio::poll instead of epoll, and at least got things compiling on FreeBSD with the tests still passing on Linux (I'm not quite set up to actually prove that the tests work on FreeBSD). Review appreciated: https://listman.redhat.com/archives/libguestfs/2023-August/032464.html -- Eric Blake, Principal Software Engineer Red Hat, Inc. Virtualization: qemu.org | libguestfs.org
2002 Apr 25
3
ext3 with 2.4.18, back to 2.2.20 ?
Hi, I installed a 2.4.18 kernel, with ext3 support and make a tune2fs -j /dev/sdxxx with all partitions, now I want to run a 2.2.20 kernel, I want to know if I can use the patch for 2.2.20 series (0.0.7a) without problems with my new ext3 partitions, or I must mount it as ext2 from 2.2.20, greetings and reply to admin@cideweb.com, I'm not subscribed to the list.
2023 Aug 07
1
[libnbd PATCH] golang: Optionally use gofmt on generated .go files
...ring 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. > > Signed-off-by: Eric Blake <eblake at redhat.com> > --- > > Followup to this earlier series: > https://listman.redhat.com/archives/libguestfs/2023-July/032133.html Now in as 9cb10b39, after rebasing to yet more rustfmt changes in the meantime. > > I still need to fold in the 'make check' verification of non-generated > .go files, plus Dan's idea of enabling CI coverage... This still...
2010 Oct 05
3
EXT3 Reserve Space
...sed the mkfs.ext3 with option -m set to 0, but there is no effect it still reserve the space. How can i set the reserved-space to 0 or calculate the reserved-space in advance? Any suggestion/idea? Regards, -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/ext3-users/attachments/20101005/d9da418d/attachment.htm>
2023 Feb 14
2
[PATCH 1/2] python: Avoid crash if callback parameters cannot be built
...ails, args was returned as NULL. We immediately tried to call Py_INCREF on this which crashed. Returning NULL means the Python function threw an exception, so print the exception and return (there is no way to return an error here - the event is lost). Reported-by: Yonatan Shtarkman See: https://listman.redhat.com/archives/libguestfs/2023-February/030653.html --- python/handle.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/python/handle.c b/python/handle.c index c8752baf47..f37e939e03 100644 --- a/python/handle.c +++ b/python/handle.c @@ -134,18 +134,21 @@ guestfs_...
2004 Feb 05
3
increasing ext3 or io responsiveness
Our Invoice posting routine (intensive harddrive io) freezes every few seconds to flush the cache. Reading this: https://listman.redhat.com/archives/ext3-users/2002-November/msg00070.html I decided to try: # elvtune -r 2048 -w 131072 /dev/sda # echo "90 500 0 0 600000 600000 95 20 0" >/proc/sys/vm/bdflush # run_post_routine # elvtune -r 128 -w 512 /dev/sda # echo "30 500 0 0 500 3000 60 20 0" >/p...
2023 Mar 10
4
[COMMON PATCH v3 0/4] Bring support for virtio-scsi back to Windows
Discussion on v2: https://listman.redhat.com/archives/libguestfs/2023-March/030989.html v2 -> v3: * Patch 1/4 ("inject_virtio_win: match only vendor/device/revision"): do not omit PCI Revision ID. Adjust commit message accordingly; * Patch 2/4 ("inject_virtio_win: add Virtio_SCSI to block_type"): add...
2023 Jul 07
2
Libnbd asynchronous API with epoll
...ns and the next direction includes a read and there is still more data to read on the file descriptor? I guess this is the case, but I must know or the client may hang unexpectedly. Best regards, Tage -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/libguestfs/attachments/20230707/bdfb0fa2/attachment.htm>
2023 Sep 20
1
virtio-mem with virt-install to share memory between guest and host on-demand
On Fri, Sep 15, 2023 at 02:41:50AM +0100, Daniel Krajnik wrote: > 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 >
2002 Dec 03
5
Locked Dirs
Hey there I recently downloaded a folder off an ftp that had [hxc] as the bwginning name of thr dir, now it says it's locked when I try to delete it in KDE. when I try to rm -f in a console it says it doesn't exist, I can't move it, delete it , or change anything about it. When I output a ls -la to a txt it says this about it "drwxr-xr-x 2 root root 4096 Dec 2
2001 Aug 14
8
Redhat Roswell
Hi all i installed Redhat beta Roswell, then i updated to Kernel 2.4.8 patched him and installed the newest util-linux + e2fprogs without any custoumized Options. Bootloader is Grub. Now when i boot he says mount -O or -0 is an invalid Option. tune2fs -j /dev/hdXX says "The filesystem already has a journal" lsmod says that no jbd or ext3 Modules is loadet but i have pachted the Kernel
2023 Mar 13
1
[V2V PATCH v2 1/5] Revert "Remove guestcaps_block_type Virtio_SCSI"
...x, 0 -> List.push_back properties ("os_version", string_of_int x) > > Looks like a reasonable revert to me. > > Acked-by: Laszlo Ersek <lersek at redhat.com> > Hi Laszlo, You're reviewing v2, but the latest series which Richard has approved is v3: https://listman.redhat.com/archives/libguestfs/2023-March/031035.html https://listman.redhat.com/archives/libguestfs/2023-March/031041.html I added you to Cc, but maybe it wasn't delivered?