Displaying 20 results from an estimated 193 matches for "23,8".
Did you mean:
2,8
2018 May 07
3
[PATCH] Fix building on macOS
Hello,
I have attached a patch that allowed the build to complete successfully on
macOS.
I haven't tried building the daemon under macOS, but I patched two files
there in a similar manner to some of the other files for consistency (just
the include order for rpc headers).
Thanks,
Adam Robinson
Virtualization and Cloud Infrastructure Senior
Information and Technology Services
University of
2009 May 21
2
[PATCH server] Fix anyterm for multinode support
...f/ovirt-server.conf | 6 ++++--
src/app/controllers/vm_controller.rb | 2 +-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/conf/ovirt-server.conf b/conf/ovirt-server.conf
index 6e5eea9..62f2dd8 100644
--- a/conf/ovirt-server.conf
+++ b/conf/ovirt-server.conf
@@ -23,8 +23,10 @@ NameVirtualHost AdminNetIpAddress:80
RewriteEngine On
RewriteMap vmnodes prg:/usr/bin/ovirt-vm2node
- RewriteRule ^/terminal/(.*\.(js|css|gif)|proxy/anyterm-module)$ http://${vmnodes:anyterm}:81/$1 [P]
- RewriteRule ^/terminal/(.*)$ http://${vmnodes:$1}:81/anyterm.html?param=$...
2015 Jan 17
2
[LLVMdev] How to test isDereferenceablePointer?
...a better way to directly test it?
Signed-off-by: Ramkumar Ramachandra <artagnon at gmail.com>
---
lib/IR/Value.cpp | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/lib/IR/Value.cpp b/lib/IR/Value.cpp
index 5f7e258..aa701d5 100644
--- a/lib/IR/Value.cpp
+++ b/lib/IR/Value.cpp
@@ -23,8 +23,10 @@
#include "llvm/IR/GetElementPtrTypeIterator.h"
#include "llvm/IR/InstrTypes.h"
#include "llvm/IR/Instructions.h"
+#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Operator.h"
+#include "...
2019 Jun 30
2
[PATCH v1 27/33] drm/virtgpu: drop use of drmP.h
...7 ++++---
12 files changed, 43 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_debugfs.c b/drivers/gpu/drm/virtio/virtgpu_debugfs.c
index ed0fcda713c3..5156e6b279db 100644
--- a/drivers/gpu/drm/virtio/virtgpu_debugfs.c
+++ b/drivers/gpu/drm/virtio/virtgpu_debugfs.c
@@ -23,8 +23,8 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <linux/debugfs.h>
-#include <drm/drmP.h>
+#include <drm/drm_debugfs.h>
+#include <drm/drm_file.h>
#include "virtgpu_drv.h"
diff --git a/drivers/gpu/drm/virtio/virtg...
2019 Jun 30
2
[PATCH v1 27/33] drm/virtgpu: drop use of drmP.h
...7 ++++---
12 files changed, 43 insertions(+), 25 deletions(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_debugfs.c b/drivers/gpu/drm/virtio/virtgpu_debugfs.c
index ed0fcda713c3..5156e6b279db 100644
--- a/drivers/gpu/drm/virtio/virtgpu_debugfs.c
+++ b/drivers/gpu/drm/virtio/virtgpu_debugfs.c
@@ -23,8 +23,8 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#include <linux/debugfs.h>
-#include <drm/drmP.h>
+#include <drm/drm_debugfs.h>
+#include <drm/drm_file.h>
#include "virtgpu_drv.h"
diff --git a/drivers/gpu/drm/virtio/virtg...
2016 Jul 27
0
[PATCH] nouveau: bios pointers may be unaligned, use proper accessors
...ct nouveau_drm *drm = nouveau_drm((d)); \
ROM16(x) ? &drm->vbios.data[ROM16(x)] : NULL; \
diff --git a/drm/nouveau/nvkm/subdev/mxm/mxms.c b/drm/nouveau/nvkm/subdev/mxm/mxms.c
index 45a2f8e..9abfa5e 100644
--- a/drm/nouveau/nvkm/subdev/mxm/mxms.c
+++ b/drm/nouveau/nvkm/subdev/mxm/mxms.c
@@ -23,8 +23,8 @@
*/
#include "mxms.h"
-#define ROM16(x) le16_to_cpu(*(u16 *)&(x))
-#define ROM32(x) le32_to_cpu(*(u32 *)&(x))
+#define ROM16(x) get_unaligned_le16(&(x))
+#define ROM32(x) get_unaligned_le32(&(x))
static u8 *
mxms_data(struct nvkm_mxm *mxm)
--
2.7.3
2019 Sep 12
1
[PATCH 3/3] pci/gk104: wait for ltssm idle before changing the link
...ci/gk104.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drm/nouveau/nvkm/subdev/pci/gk104.c b/drm/nouveau/nvkm/subdev/pci/gk104.c
> index 6aeb07fe4..2d1fa67eb 100644
> --- a/drm/nouveau/nvkm/subdev/pci/gk104.c
> +++ b/drm/nouveau/nvkm/subdev/pci/gk104.c
> @@ -23,6 +23,8 @@
> */
> #include "priv.h"
>
> +#include <subdev/timer.h>
> +
> static int
> gk104_pcie_version_supported(struct nvkm_pci *pci)
> {
> @@ -142,6 +144,11 @@ gk104_pcie_set_link_speed(struct nvkm_pci *pci, enum nvkm_pcie_speed speed)
>...
2018 May 07
0
Re: [PATCH] Fix building on macOS
diff --git a/daemon/tsk.c b/daemon/tsk.c
index ad10d74fe..00a4b04b4 100644
--- a/daemon/tsk.c
+++ b/daemon/tsk.c
@@ -23,8 +23,8 @@
#include <inttypes.h>
#include <string.h>
#include <unistd.h>
-#include <rpc/xdr.h>
#include <rpc/types.h>
+#include <rpc/xdr.h>
Is it generally required on Macs that rpc/xdr.h is included after
rpc/types.h, or is this change a mistake?
The rest...
2008 Feb 17
1
--disable-ipv6 does not work
...t; does not work for me in version
1.1.beta16 (and earlier versions). The following patch fixed this problem
for me.
Heiko
============================================================
--- configure.in.org 2008-02-16 15:35:53.000000000 +0100
+++ configure.in 2008-02-17 01:30:21.675931789 +0100
@@ -23,8 +23,8 @@
AC_ARG_ENABLE(ipv6,
[ --enable-ipv6 Enable IPv6 support (auto)],
- if test x$withval = xno || test x$withval = xauto; then
- want_ipv6=$withval
+ if test x$enableval = xno || test x$enableval = xauto; then
+ want_ipv6=$enableval
else
want_ipv6=yes
fi,
============...
2008 Aug 21
0
[PATCH]fix a little problem in formats file of xentrace
...ormat.
Signed-off-by: Yang Xiaowei <xiaowei.yang@intel.com>
Zhou Ting <ting.g.zhou@intel.com>
---
diff -r 0df3bf8aac1e tools/xentrace/formats
--- a/tools/xentrace/formats Mon Jun 16 16:35:17 2008 +0100
+++ b/tools/xentrace/formats Thu Aug 21 17:36:03 2008 +0800
@@ -23,8 +23,8 @@ 0x00081001 CPU%(cpu)d %(tsc)d (+%(relt
0x00081001 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) VMENTRY [ dom:vcpu = 0x%(1)08x ]
0x00081002 CPU%(cpu)d %(tsc)d (+%(reltsc)8d) VMEXIT [ dom:vcpu = 0x%(1)08x, exitcode = 0x%(2)08x, rIP = 0x%(3)08x ]
0x00081102 CPU%(cpu)d %(tsc)d (+...
2009 May 21
1
[PATCH server] Fix for anyterm and multiple nodes
...e sure how we're going to manage that change though.
---
conf/ovirt-server.conf | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/conf/ovirt-server.conf b/conf/ovirt-server.conf
index 6e5eea9..1d7816f 100644
--- a/conf/ovirt-server.conf
+++ b/conf/ovirt-server.conf
@@ -23,7 +23,8 @@ NameVirtualHost AdminNetIpAddress:80
RewriteEngine On
RewriteMap vmnodes prg:/usr/bin/ovirt-vm2node
- RewriteRule ^/terminal/(.*\.(js|css|gif)|proxy/anyterm-module)$ http://${vmnodes:anyterm}:81/$1 [P]
+ RewriteRule ^/terminal/(.*)/proxy/anyterm-module$ http://${vmnodes:$1}:81/...
2013 Apr 23
1
[PATCH virtio-next] caif_virtio: Remove bouncing email addresses
Remove our (soon to be) bouncing email addresses,
and update Dmitri's address.
Dmitry will take over as maintainer for CAIF from now on.
Cc: Vikram Arv <vikram.arv at stericsson.com>
Cc: Dmitry Tarnyagin <dmitry.tarnyagin at stericsson.com>
Cc: Dmitry Tarnyagin <dmitry.tarnyagin at lockless.no>
Signed-off-by: Sjur Br?ndeland <sjur.brandeland at stericsson.com>
---
2013 Apr 23
1
[PATCH virtio-next] caif_virtio: Remove bouncing email addresses
Remove our (soon to be) bouncing email addresses,
and update Dmitri's address.
Dmitry will take over as maintainer for CAIF from now on.
Cc: Vikram Arv <vikram.arv at stericsson.com>
Cc: Dmitry Tarnyagin <dmitry.tarnyagin at stericsson.com>
Cc: Dmitry Tarnyagin <dmitry.tarnyagin at lockless.no>
Signed-off-by: Sjur Br?ndeland <sjur.brandeland at stericsson.com>
---
2017 Feb 17
2
[PATCH 1/2] dib: preserve xattrs and SELinux attributes when exporting as tar
...= [ "sudo"; "docker"; "import"; dockertmp; docker_target ] in
if run_command cmd <> 0 then exit 1
diff --git a/dib/output_format_tar.ml b/dib/output_format_tar.ml
index d8d5bfa..132532d 100644
--- a/dib/output_format_tar.ml
+++ b/dib/output_format_tar.ml
@@ -23,7 +23,8 @@ open Output_format
let tar_run_fs (g : Guestfs.guestfs) filename _ =
message (f_"Compressing the image as tar");
- g#tar_out ~excludes:[| "./sys/*"; "./proc/*" |] "/" filename
+ g#tar_out ~excludes:[| "./sys/*"; "./proc/*&quo...
2018 May 15
3
[PATCH v2 0/2] Fix building on macOS
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-May/msg00042.html
v2:
- Split into two patches dealing with the different issues.
- git format & attribution.
I only tested this on Linux but at least it doesn't break things
there.
Rich.
2015 Jan 20
2
[LLVMdev] How to test isDereferenceablePointer?
...agnon at gmail.com>
>> ---
>> lib/IR/Value.cpp | 9 +++++++++
>> 1 file changed, 9 insertions(+)
>>
>> diff --git a/lib/IR/Value.cpp b/lib/IR/Value.cpp
>> index 5f7e258..aa701d5 100644
>> --- a/lib/IR/Value.cpp
>> +++ b/lib/IR/Value.cpp
>> @@ -23,8 +23,10 @@
>> #include "llvm/IR/GetElementPtrTypeIterator.h"
>> #include "llvm/IR/InstrTypes.h"
>> #include "llvm/IR/Instructions.h"
>> +#include "llvm/IR/IntrinsicInst.h"
>> #include "llvm/IR/Module.h"
>> #inclu...
2003 Sep 16
1
OpenSSH Security Advisory: buffer.adv
This is the 1st revision of the Advisory.
This document can be found at: http://www.openssh.com/txt/buffer.adv
1. Versions affected:
All versions of OpenSSH's sshd prior to 3.7 contain a buffer
management error. It is uncertain whether this error is
potentially exploitable, however, we prefer to see bugs
fixed proactively.
2. Solution:
Upgrade to OpenSSH
2003 Sep 16
1
[alambert@quickfire.org: Heads up -- potential problems in 3.7, too? [Fwd: OpenSSH Security Advisory: buffer.adv]]
...arlier
Index: buffer.c
===================================================================
RCS file: /cvs/src/usr.bin/ssh/buffer.c,v
retrieving revision 1.16
retrieving revision 1.18
diff -u -r1.16 -r1.18
--- buffer.c 26 Jun 2002 08:54:18 -0000 1.16
+++ buffer.c 16 Sep 2003 21:02:39 -0000 1.18
@@ -23,8 +23,11 @@
void
buffer_init(Buffer *buffer)
{
- buffer->alloc = 4096;
- buffer->buf = xmalloc(buffer->alloc);
+ const u_int len = 4096;
+
+ buffer->alloc = 0;
+ buffer->buf = xmalloc(len);
+ buffer->alloc = len;
buffer->offset = 0;
buffer->end = 0;
}
@@ -34,8 +37,10...
2007 Aug 14
1
Faulty voicemail
...a
non-zero exit before it gets to voicemail, but I've no idea why. In
this case theres 2 SIP clients to sim-call. On other occasions it works
fine. In the CDR logs, I can see "NO ANSWER" and "ANSWERED" - what
would be there if voicemail "answers"?
Asterisk: 1.2.23
[macro-ext-group-home]
; ${ARG1} - Virtual Extension (e.g. 2005)
exten =>
s,1,ExecIF($["${RECORDSIP}"="TRUE"],Monitor,wav|${TIMESTAMP}-${CALLERID(
num)}-${MACRO_EXTEN}-${UNIQUEID}.WAV)
exten =>
s,2,Dial(SIP/2${ARG1:-2}&SIP/4${ARG1:-2}&SIP/6${ARG1:-2},${OFFICE_TIME...
2016 Apr 21
4
[PATCH V2 RFC] fixup! virtio: convert to use DMA api
...clude/standard-headers/linux/virtio_config.h | 2 ++
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/include/hw/virtio/virtio-access.h b/include/hw/virtio/virtio-access.h
index 967cc75..bb6f34e 100644
--- a/include/hw/virtio/virtio-access.h
+++ b/include/hw/virtio/virtio-access.h
@@ -23,7 +23,8 @@ static inline AddressSpace *virtio_get_dma_as(VirtIODevice *vdev)
BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
- if (k->get_dma_as) {
+ if (virtio_host_has_feature(vdev, VIRTIO_F_IOMMU_PLATFORM) &&
+...