Displaying 20 results from an estimated 133 matches for "38,9".
Did you mean:
36,9
2017 Mar 22
2
[PATCH] v2v: xen: Require direct backend when doing Xen conversions over SSH.
...es@redhat.com>
Unfortunately libvirt has another bug related to the qemu
ssh driver, as described here:
https://bugzilla.redhat.com/show_bug.cgi?id=1434651#c3
Until this bug is fixed we have to require the direct backend to be
used for xen+ssh conversions.
This partially reverts commit ecbf09385033ba0acf14e914927ec81ad20a5308.
---
v2v/input_libvirt_xen_ssh.ml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/v2v/input_libvirt_xen_ssh.ml b/v2v/input_libvirt_xen_ssh.ml
index 4975eff..a68cdf8 100644
--- a/v2v/input_libvirt_xen_ssh.ml
+++ b/v2v/input_libvirt_xen_ssh.ml
@@ -38,6 +38,9 @@...
2013 Dec 29
2
[LLVMdev] [PATCH] Prevent CMake from installing libgtest*.
...to LLVM but to a dedicated gtest package.
---
utils/unittest/CMakeLists.txt | 3 +++
1 file changed, 3 insertions(+)
diff --git a/utils/unittest/CMakeLists.txt b/utils/unittest/CMakeLists.txt
index fd1a048..c11c110 100644
--- a/utils/unittest/CMakeLists.txt
+++ b/utils/unittest/CMakeLists.txt
@@ -38,6 +38,9 @@ if(MSVC AND MSVC_VERSION EQUAL 1700)
add_definitions(-D_VARIADIC_MAX=10)
endif ()
+# Delay building until the tests pull it in, and avoid installing it.
+set(EXCLUDE_FROM_ALL ON)
+
add_llvm_library(gtest
googletest/src/gtest-all.cc
)
--
1.8.5.2
2010 Dec 14
1
embed Sweave driver in .Rnw file
...highlighting).
I played with Sweave so that it would be able to create the driver from
some text included in the text of the .Rnw file:
$ svn diff
Index: src/library/utils/R/Sweave.R
===================================================================
--- src/library/utils/R/Sweave.R (revision 53846)
+++ src/library/utils/R/Sweave.R (working copy)
@@ -20,6 +20,16 @@
# We don't need srclines for code, but we do need it for text, and
it's easiest
# to just keep it for everything.
+SweaveGetDriver <- function(file){
+ txt <- readLines(file)
+ line <- grep( "\\S...
2015 Mar 31
2
[PATCH v2 1/6] virtio_balloon: transitional interface
....c | 29 +++++++++++++++++++++--------
2 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/include/uapi/linux/virtio_balloon.h b/include/uapi/linux/virtio_balloon.h
index 4b0488f..71ef93b 100644
--- a/include/uapi/linux/virtio_balloon.h
+++ b/include/uapi/linux/virtio_balloon.h
@@ -38,9 +38,9 @@
struct virtio_balloon_config {
/* Number of pages host wants Guest to give up. */
- __le32 num_pages;
+ __u32 num_pages;
/* Number of pages we've actually got in balloon. */
- __le32 actual;
+ __u32 actual;
};
#define VIRTIO_BALLOON_S_SWAP_IN 0 /* Amount of memory swapp...
2015 Mar 31
2
[PATCH v2 1/6] virtio_balloon: transitional interface
....c | 29 +++++++++++++++++++++--------
2 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/include/uapi/linux/virtio_balloon.h b/include/uapi/linux/virtio_balloon.h
index 4b0488f..71ef93b 100644
--- a/include/uapi/linux/virtio_balloon.h
+++ b/include/uapi/linux/virtio_balloon.h
@@ -38,9 +38,9 @@
struct virtio_balloon_config {
/* Number of pages host wants Guest to give up. */
- __le32 num_pages;
+ __u32 num_pages;
/* Number of pages we've actually got in balloon. */
- __le32 actual;
+ __u32 actual;
};
#define VIRTIO_BALLOON_S_SWAP_IN 0 /* Amount of memory swapp...
2010 Aug 04
5
v2.0.rc4 released
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc4.tar.gz
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc4.tar.gz.sig
I'm planning to release rc5 maybe this Friday or weekend, and if there
are no serious bugs just change the version number to v2.0.0 a day or
two later.
Largest changes since rc3:
+ director: Added director_doveadm_port for accepting doveadm
TCP connections.
+
2010 Aug 04
5
v2.0.rc4 released
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc4.tar.gz
http://dovecot.org/releases/2.0/rc/dovecot-2.0.rc4.tar.gz.sig
I'm planning to release rc5 maybe this Friday or weekend, and if there
are no serious bugs just change the version number to v2.0.0 a day or
two later.
Largest changes since rc3:
+ director: Added director_doveadm_port for accepting doveadm
TCP connections.
+
2023 May 03
1
[PATCH v5 virtio 01/11] virtio: allow caller to override device id in vp_modern
...pci_dev->device - 0x1040;
+ }
}
mdev->id.vendor = pci_dev->subsystem_vendor;
diff --git a/include/linux/virtio_pci_modern.h b/include/linux/virtio_pci_modern.h
index c4eeb79b0139..e7b1db1dd0bb 100644
--- a/include/linux/virtio_pci_modern.h
+++ b/include/linux/virtio_pci_modern.h
@@ -38,6 +38,9 @@ struct virtio_pci_modern_device {
int modern_bars;
struct virtio_device_id id;
+
+ /* optional check for vendor virtio device, returns dev_id or -ERRNO */
+ int (*device_id_check)(struct pci_dev *pdev);
};
/*
--
2.17.1
2012 Jun 12
6
[RFC] net/sched/em_canid: Ematch rule to match CAN frames according to their CAN IDs
...anid.c | 217 +++++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 234 insertions(+), 2 deletions(-)
create mode 100644 net/sched/em_canid.c
diff --git a/include/linux/can.h b/include/linux/can.h
index 9a19bcb..08d1610 100644
--- a/include/linux/can.h
+++ b/include/linux/can.h
@@ -38,6 +38,9 @@
*/
typedef __u32 canid_t;
+#define CAN_SFF_ID_BITS 11
+#define CAN_EFF_ID_BITS 29
+
/*
* Controller Area Network Error Frame Mask structure
*
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h
index defbde2..6b16f90 100644
--- a/include/linux/pkt_cls.h
+++ b/inclu...
2013 May 24
10
[PATCH 0/4] ARM/early-printk: Improve reusability and add Calxeda support
The current early-printk support for ARM is rather hard-coded, making
it hard to add machines or tweak settings.
This series slightly moves some code to gather UART settings in
xen/arch/arm/Rules.mk instead of the actual .c files. Also it allows
two different machines with different settings to share the same
driver, which the last patch exploits to add support the Calxeda
Midway hardware.
This
2017 Mar 23
0
Re: [PATCH] v2v: xen: Require direct backend when doing Xen conversions over SSH.
...has another bug related to the qemu
> ssh driver, as described here:
>
> https://bugzilla.redhat.com/show_bug.cgi?id=1434651#c3
>
> Until this bug is fixed we have to require the direct backend to be
> used for xen+ssh conversions.
>
> This partially reverts commit ecbf09385033ba0acf14e914927ec81ad20a5308.
> ---
> v2v/input_libvirt_xen_ssh.ml | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/v2v/input_libvirt_xen_ssh.ml b/v2v/input_libvirt_xen_ssh.ml
> index 4975eff..a68cdf8 100644
> --- a/v2v/input_libvirt_xen_ssh.ml
> +++ b/v2v/in...
2019 Dec 12
0
[PATCH v2 1/6] build: stop shipping files generated by configure
...-297,7 +301,7 @@ SOURCES_MLI = \
utils.mli
SOURCES_ML = \
- daemon_config.ml \
+ $(CONFIGURE_GENERATED_ML) \
utils.ml \
structs.ml \
optgroups.ml \
diff --git a/python/Makefile.am b/python/Makefile.am
index 673de3157..9aca202b5 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -38,8 +38,9 @@ EXTRA_DIST = \
setup.py.in \
run-bindtests \
run-python-tests \
+ t/__init__.py \
t/README \
- t/*.py
+ t/test[0-9]*.py
if HAVE_PYTHON
diff --git a/rust/Makefile.am b/rust/Makefile.am
index c96607621..979e98bd4 100644
--- a/rust/Makefile.am
+++ b/rust/Makefile.am
@@ -26,7 +2...
2013 Feb 07
0
[PATCH 1/4] xmms - Fix libtool usage.
...man src examples test build objs
-DISTCLEANFILES = libtool-disable-static
-
EXTRA_DIST = \
COPYING.FDL \
COPYING.GPL \
diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am
index 29879ed..84c4106 100644
--- a/src/plugin_xmms/Makefile.am
+++ b/src/plugin_xmms/Makefile.am
@@ -38,9 +38,6 @@ else
xmmsinputplugindir = @XMMS_INPUT_PLUGIN_DIR@
endif
-# Don't build a static library
-LIBTOOL = $(top_builddir)/libtool-disable-static
-
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
plugin_sources = charset.c configure.c fileinfo.c http.c plugin.c tag.c
--
1.7.12
-----...
2023 Mar 15
0
[PATCH 5.10 029/104] drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype
From: Jiri Slaby (SUSE) <jirislaby at kernel.org>
[ Upstream commit 3638a820c5c3b52f327cebb174fd4274bee08aa7 ]
gcc-13 warns about mismatching types for enums. That revealed switched
arguments of nv50_wndw_new_():
drivers/gpu/drm/nouveau/dispnv50/wndw.c:696:1: error: conflicting types for 'nv50_wndw_new_' due to enum/integer mismatch; have 'int(const struc...
2023 Mar 15
0
[PATCH 5.15 044/145] drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype
From: Jiri Slaby (SUSE) <jirislaby at kernel.org>
[ Upstream commit 3638a820c5c3b52f327cebb174fd4274bee08aa7 ]
gcc-13 warns about mismatching types for enums. That revealed switched
arguments of nv50_wndw_new_():
drivers/gpu/drm/nouveau/dispnv50/wndw.c:696:1: error: conflicting types for 'nv50_wndw_new_' due to enum/integer mismatch; have 'int(const struc...
2019 Jan 25
0
[klibc:update-dash] [CD] support drive letters on Cygwin
Commit-ID: 5015d68d585a8c8dfc8f6480e004a7073d6fd533
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=5015d68d585a8c8dfc8f6480e004a7073d6fd533
Author: Eric Blake <eblake at redhat.com>
AuthorDate: Mon, 27 Oct 2014 11:38:43 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000
[klibc] [CD] support drive letters on Cygwin
The Cygwin platform supports DOS style drive-letter paths such
as "C:\\dir", even though the preferred form is a POSIX-style
"/...
2020 Mar 28
0
[klibc:update-dash] dash: [CD] support drive letters on Cygwin
Commit-ID: 8703ad5517c811716e37a2605acc8ddc8c66362a
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=8703ad5517c811716e37a2605acc8ddc8c66362a
Author: Eric Blake <eblake at redhat.com>
AuthorDate: Mon, 27 Oct 2014 11:38:43 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: [CD] support drive letters on Cygwin
[ dash commit 586463c3cf247dbead8553da7284a346b2faf1fb ]
The Cygwin platform supports DOS style drive-letter paths such
as "C:\\di...
2007 Feb 05
2
[LLVMdev] automatically generating intrinsic declarations
...ntrinsicEmitter.cpp
===================================================================
RCS file: /var/cvs/llvm/llvm/utils/TableGen/IntrinsicEmitter.cpp,v
retrieving revision 1.22
diff -u -r1.22 IntrinsicEmitter.cpp
--- utils/TableGen/IntrinsicEmitter.cpp
+++ utils/TableGen/IntrinsicEmitter.cpp
@@ -38,6 +38,9 @@
// Emit the intrinsic verifier.
EmitVerifier(Ints, OS);
+ // Emit the intrinsic declaration generator.
+ EmitGenerator(Ints, OS);
+
// Emit mod/ref info for each function.
EmitModRefInfo(Ints, OS);
@@ -121,6 +124,19 @@
}
}
+static void EmitTypeGenerate(std::...
2024 Aug 21
1
[PATCH v2 78/86] drm/radeon: Run DRM default client setup
...adeon/radeon_mode.h | 12 ++-
3 files changed, 29 insertions(+), 113 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c
index 7bf08164140e..9eb24f653008 100644
--- a/drivers/gpu/drm/radeon/radeon_drv.c
+++ b/drivers/gpu/drm/radeon/radeon_drv.c
@@ -38,8 +38,10 @@
#include <linux/pci.h>
#include <drm/drm_aperture.h>
+#include <drm/drm_client_setup.h>
#include <drm/drm_drv.h>
#include <drm/drm_file.h>
+#include <drm/drm_fourcc.h>
#include <drm/drm_gem.h>
#include <drm/drm_ioctl.h>
#include &...
2016 Sep 09
2
[PATCH] v2v: utils: Replace "remove_duplicates" function with call to sort_uniq.
...:: xs -> Hashtbl.add h x true; x :: loop xs
- in
- loop xs
-
let du filename =
(* There's no OCaml binding for st_blocks, so run coreutils 'du'. *)
let cmd =
diff --git a/v2v/utils.mli b/v2v/utils.mli
index bea9cf3..7f57eec 100644
--- a/v2v/utils.mli
+++ b/v2v/utils.mli
@@ -38,9 +38,6 @@ val find_uefi_firmware : string -> Uefi.uefi_firmware
val compare_app2_versions : Guestfs.application2 -> Guestfs.application2 -> int
(** Compare two app versions. *)
-val remove_duplicates : 'a list -> 'a list
-(** Remove duplicates from a list. *)
-
val du : st...