search for: dsv

Displaying 20 results from an estimated 38 matches for "dsv".

Did you mean: dev
2013 Aug 09
4
[PATCH v2 0/4] Experimental User-Mode Linux backend.
v1 was here: https://www.redhat.com/archives/libguestfs/2013-August/msg00005.html This now works, to some extent. The main problem now is that devices are named /dev/ubd[a-] which of course confuses everything. I'm thinking it may be easier to add a udev rule to rename them. Rich.
2013 Aug 09
5
[PATCH 0/4] Not quite working User-Mode Linux backend.
This is a User-Mode Linux backend for libguestfs. You can select it by doing: export LIBGUESTFS_BACKEND=uml export LIBGUESTFS_QEMU=/path/to/vmlinux Note we're reusing the 'qemu' variable in the handle for convenience. QEmu is not involved when using the UML backend. This almost works. UML itself crashes when the daemon tries to connect to the serial port. I suspect it's
2005 Dec 28
8
[Bug 3358] New: rsync chokes on large files
...y: rsync chokes on large files Product: rsync Version: 2.6.6 Platform: PPC OS/Version: Mac OS X Status: NEW Severity: major Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: david-bo@dsv.su.se QAContact: rsync-qa@samba.org I try to rsync a 25-50 GB AES128 encrypted disk image called ''test'' between two Mac OS X-machines. This is with rsync 2.6.6 (is there a 2.6.7? The front page just says 2.6.6) % rsync -av --progress --stats --rsh=ssh /test 2nd-machin...
2008 Feb 06
5
DO NOT REPLY [Bug 5246] New: rsync fails to transfer some files
...ails to transfer some files Product: rsync Version: 2.6.9 Platform: Other OS/Version: Mac OS X Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: david-bo@dsv.su.se QAContact: rsync-qa@samba.org When I use rsync to sync my music library (mp3s typically have spaces and other slightly odd characters in their names) from one intel-Mac running latest version of Mac OS X 10.4 to an external firewire drive connected to a PPC-Mac with the same OS ver...
2003 Oct 22
4
adjacency matrix
Dear R experts, I am new to the list and R software. I need to convert arcview file to Winbugs having R has middle package. Got from friends that it is possible following the steps: 1. Converting arcview shapefile to "cgm clear text file" 2. Downloading "convert.r" to into R 2.1 use source("convert.r") 2.2 convert("filename_cgm") without the
2014 Jul 25
3
[PATCH] launch: Close file descriptors after fork (RHBZ#1123007).
...nch-uml.c index 2a6ddaf..88c684b 100644 --- a/src/launch-uml.c +++ b/src/launch-uml.c @@ -333,6 +333,9 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) goto dup_failed; close (csv[1]); + + /* RHBZ#1123007 */ + close_file_descriptors (fd >= 2 && fd != dsv[1]); } /* Dump the command line (after setting up stderr above). */ @@ -360,7 +363,7 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) if (g->recovery_proc) { r = fork (); if (r == 0) { - int i, fd, max_fd; + int i; struct sigaction sa; p...
2007 Oct 22
0
Intermittently stalling PAM authentication children
...in/sshd #11 0x000000552aac58d2 in session_close_by_channel () from /usr/sbin/sshd #12 0x000000552aac85a5 in session_close_by_channel () from /usr/sbin/sshd #13 0x000000552aab5b39 in main () from /usr/sbin/sshd Any ideas on how this happens ? Simon -- Simon Vallet Ing?nieur Syst?mes/R?seaux CEA DSV IG / Genoscope T?l. : 01 60 87 36 06 E-mail : svallet at genoscope.cns.fr
2019 Nov 01
0
Wine release 4.19
...: Use check_texture_requirements() in D3DXCheckVolumeTextureRequirements() with correct resource type. d3dx9: Don't pass usage flags for staging texture in D3DXCreateVolumeTextureFromFileInMemoryEx(). ddraw: Fix vertex buffer offset in d3d_execute_buffer_execute(). d3d11: Mind DSV flags when checking for conflicting SRV. d3d11/tests: Add tests for binding resource as both SRV and DSV. d3d11/tests: Require D3D_FEATURE_LEVEL_11_0 for using DSV flags. wined3d: Return TRUE for NULL SRV format from wined3d_dsv_srv_conflict(). Piotr Caban (13): ucrtbase: I...
2017 Jun 10
1
[PATCH] lib: direct, uml: Unblock SIGTERM in the hypervisor and recovery processes (RHBZ#1460338).
...v, const char *arg) size_t i; struct hv_param *hp; char *term = getenv ("TERM"); + sigset_t sigset; if (!uml_supported (g)) return -1; @@ -323,6 +324,11 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) close_file_descriptors (fd > 2 && fd != dsv[1]); } + /* RHBZ#1460338. */ + sigemptyset (&sigset); + sigaddset (&sigset, SIGTERM); + sigprocmask (SIG_UNBLOCK, &sigset, NULL); + /* Dump the command line (after setting up stderr above). */ if (g->verbose) print_vmlinux_command_line (g, cmdline....
2003 Jun 10
1
Samba 2.2.7 as PDC causing BSOD on 2K domain logon
...------- DL380 PDC on dl380 (Linux with samba version: -hidden- Workgroup Master --------- ------- PN-TRADING DL380 ************************ <a trimmed smb.conf, for brevity. The complete one posted on http://www.dsv.su.se/~anders-l/samba/smb.conf> (full of crap comments, work notes etc, just in case you'll need to see it.) This one is the same, just with all comments grep -v:ed [global] workgroup = pn-trading server string = PDC on %L (Linux with samba version: -hidden-) hosts allow = 192.16...
2007 Mar 28
3
multi-level modeling & R?
A colleague was asking me if R does multi-level modelling as opposed to multiple regression. Since I have no knowledge of multi-level modelling (except 5 minutes googling ) I thought that I would as here. Does are offer any multi-level modeling packages? It looked like arm might be one but I was not sure. Thanks
2014 Jul 30
2
[PATCH v2] launch: Close file descriptors after fork (RHBZ#1123007).
https://bugzilla.redhat.com/show_bug.cgi?id=1123007 This is version 2 of the patch which avoids incorrectly closing stderr, so we can still see debug and error messages. Rich.
2016 Mar 18
0
Wine release 1.9.6
...ment WINEBUILD in the manpage. Józef Kucia (43): d3d10_1/tests: Port test_create_device() from d3d11. d3d10core/tests: Add test for creating RTV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Add test for creating RTV with DXGI_FORMAT_UNKNOWN. d3d10core/tests: Add test for creating DSV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Add test for creating DSV with DXGI_FORMAT_UNKNOWN. d3d11/tests: Introduce d3d11_test_context for visual tests. d3d11/tests: Introduce draw_quad(). wined3d: Recognize aoffimmi shader instruction modifier. wined3d: Extend shader_gl...
2017 Jan 06
0
Wine release 2.0-rc4
...tVolume when 3D processing is disabled. dsound: Don't write more than three periods to IAudioClient. André Hentschel (1): hlink/tests: Test skipped data. Henri Verbeet (4): ddraw: Keep an explicit reference to the wined3d device in surfaces. wined3d: Only check rtv and dsv bindings in device_resource_released() when D3D is initialised. wined3d: Pass GL_SYNC_FLUSH_COMMANDS_BIT to glClientWaitSync() if WINED3DGETDATA_FLUSH was specified. d2d1: Update "p0" after inserting a vertex in d2d_geometry_resolve_beziers(). Hugh McMaster (3): regedit...
2014 Jul 28
1
Re: [PATCH] launch: Close file descriptors after fork (RHBZ#1123007).
...unch-uml.c index 2a6ddaf..88c684b 100644 --- a/src/launch-uml.c +++ b/src/launch-uml.c @@ -333,6 +333,9 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) goto dup_failed; close (csv[1]); + + /* RHBZ#1123007 */ + close_file_descriptors (fd >= 2 && fd != dsv[1]); } /* Dump the command line (after setting up stderr above). */ @@ -360,7 +363,7 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) if (g->recovery_proc) { r = fork (); if (r == 0) { - int i, fd, max_fd; + int i; struct sigaction sa; pi...
2016 Jun 24
0
Wine release 1.9.13
...escription is invalid. wined3d: Forbid creating typeless render target views. d3d11: Validate "ViewDimension" field in D3D11_DEPTH_STENCIL_VIEW_DESC. d3d11: Validate "ViewDimension" field in D3D11_RENDER_TARGET_VIEW_DESC. d3d11/tests: Add test for invalid DSV descriptions. d3d11/tests: Add test for invalid RTV descriptions. wined3d: Avoid calling wined3d_rendertarget_view_create() with WINED3DFMT_UNKNOWN. d3d10core/tests: Add test for invalid SRV descriptions. d3d10core/tests: Add test for invalid RTV descriptions. d3d10cor...
2016 Apr 14
0
[PATCH] Add safe wrapper around waitpid which deals with EINTR correctly.
...rc/launch-uml.c @@ -26,7 +26,6 @@ #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> -#include <sys/wait.h> #include <sys/signal.h> #include <libintl.h> @@ -470,8 +469,8 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) close (dsv[0]); if (data->pid > 0) kill (data->pid, SIGKILL); if (data->recoverypid > 0) kill (data->recoverypid, SIGKILL); - if (data->pid > 0) waitpid (data->pid, NULL, 0); - if (data->recoverypid > 0) waitpid (data->recoverypid, NULL, 0); + if (data->pid >...
2015 Jun 25
0
[PATCH v2 1/9] build: Remove ./configure --enable-valgrind-daemon.
...} -#endif } /* Shut down the backend. */ diff --git a/src/launch-uml.c b/src/launch-uml.c index 785548c..6a63b6b 100644 --- a/src/launch-uml.c +++ b/src/launch-uml.c @@ -267,17 +267,6 @@ launch_uml (guestfs_h *g, void *datav, const char *arg) ADD_CMDLINE_PRINTF ("ssl3=fd:%d", dsv[1]); ADD_CMDLINE ("guestfs_channel=/dev/ttyS3"); -#if 0 /* XXX This could be made to work. */ -#ifdef VALGRIND_DAEMON - /* Set up virtio-serial channel for valgrind messages. */ - ADD_CMDLINE ("-chardev"); - ADD_CMDLINE_PRINTF ("file,path=%s/valgrind.log.%d,id=valgr...
2016 Apr 14
2
[PATCH] Add safe wrapper around waitpid which deals with EINTR correctly.
As Eric Blake noted in: https://www.redhat.com/archives/libguestfs/2016-April/msg00154.html libguestfs doesn't correctly handle the case where waitpid receives a SIGCHLD signal and the main program has registered a non-restartable signal handler. In this case waitpid would return -EINTR and we would print an error, but actually we should retry this case. This adds two new internal functions,
2015 Sep 29
1
[PATCH] [repost] build: Remove ./configure --enable-valgrind-daemon.
Previously posted here: https://www.redhat.com/archives/libguestfs/2015-June/msg00266.html Rich.