Displaying 20 results from an estimated 131 matches for "28,10".
Did you mean:
68,10
2004 Oct 20
3
iproute2-2.6.9-041019 compiling error
While compiling the new release i´ll get this error:
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g -I../include
-DRESOLVE_HOSTNAMES -c -o ipxfrm.o ipxfrm.c
ipxfrm.c: In function `xfrm_selector_print'':
ipxfrm.c:395: error: `IPPROTO_SCTP'' undeclared (first use in this function)
ipxfrm.c:395: error: (Each undeclared identifier is reported only once
ipxfrm.c:395: error: for
2006 Jul 23
1
[PATCH] Fix a compile bug with gcc 2.95 in src/plugin_common/replaygain.c
Declaring variables in the middle of a block isn't supported by
older (pre-C99?) compilers, and gcc 2.95 is one of them.
--- a/src/plugin_common/replaygain.c
+++ b/src/plugin_common/replaygain.c
@@ -28,10 +28,11 @@ void FLAC_plugin__replaygain_get_from_fi
double *track_peak, FLAC__bool *track_peak_set,
double *album_peak, FLAC__bool *album_peak_set)
{
- *track_gain_set = *album_gain_set = *track_peak_set = *a...
2013 Sep 23
0
GSSAPI headers
.... This is a
problem when building with -Werror. This patch reverses the order of
preference so <gssapi/gssapi.h> wins over <gssapi.h>.
Index: ssh-gss.h
===================================================================
--- ssh-gss.h (revision 255802)
+++ ssh-gss.h (working copy)
@@ -28,10 +28,10 @@
#ifdef GSSAPI
-#ifdef HAVE_GSSAPI_H
+#if defined(HAVE_GSSAPI_GSSAPI_H)
+#include <gssapi/gssapi.h>
+#elif defined(HAVE_GSSAPI_H)
#include <gssapi.h>
-#elif defined(HAVE_GSSAPI_GSSAPI_H)
-#include <gssapi/gssapi.h>
#endif
#ifdef KRB5
Index: sshd.c
===========...
2007 Oct 30
0
m4/as-compiler-flag.m4
m4/as-compiler-flag.m4 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 59003aea7d25c962c3332db28222b4241f68fdda
Author: Benjamin Otte <otte at gnome.org>
Date: Tue Oct 30 10:40:04 2007 +0100
make second and third arguments to AS_COMPILER_FLAG optional
diff --git a/m4/as-compiler-flag.m4 b/m4/as-compiler-flag.m4
index f706196..76cf4cd 100644
--- a/m4/as-compiler-flag.m4
+++ b/m4/a...
2010 Aug 03
4
[PATCH 5/6] staging: hv: Increased storvsc ringbuffer and max_io_requests
...gt;
---
drivers/staging/hv/storvsc_api.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/hv/storvsc_api.h b/drivers/staging/hv/storvsc_api.h
index 0063bde..8505a1c 100644
--- a/drivers/staging/hv/storvsc_api.h
+++ b/drivers/staging/hv/storvsc_api.h
@@ -28,10 +28,10 @@
#include "vmbus_api.h"
/* Defines */
-#define STORVSC_RING_BUFFER_SIZE (10*PAGE_SIZE)
+#define STORVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
#define BLKVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
-#define STORVSC_MAX_IO_REQUESTS 64
+#define STORVSC_MAX_IO_REQUESTS 128...
2010 Aug 03
4
[PATCH 5/6] staging: hv: Increased storvsc ringbuffer and max_io_requests
...gt;
---
drivers/staging/hv/storvsc_api.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/hv/storvsc_api.h b/drivers/staging/hv/storvsc_api.h
index 0063bde..8505a1c 100644
--- a/drivers/staging/hv/storvsc_api.h
+++ b/drivers/staging/hv/storvsc_api.h
@@ -28,10 +28,10 @@
#include "vmbus_api.h"
/* Defines */
-#define STORVSC_RING_BUFFER_SIZE (10*PAGE_SIZE)
+#define STORVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
#define BLKVSC_RING_BUFFER_SIZE (20*PAGE_SIZE)
-#define STORVSC_MAX_IO_REQUESTS 64
+#define STORVSC_MAX_IO_REQUESTS 128...
2017 Oct 04
0
[PATCH 09/13] x86/asm: Convert ALTERNATIVE*() assembler macros to preprocessor macros
...\
+144:; \
+ newinstr2; \
+145:; \
.popsection
-.endm
#endif /* __ASSEMBLY__ */
diff --git a/arch/x86/include/asm/smap.h b/arch/x86/include/asm/smap.h
index db333300bd4b..b1264cff8906 100644
--- a/arch/x86/include/asm/smap.h
+++ b/arch/x86/include/asm/smap.h
@@ -28,10 +28,10 @@
#ifdef CONFIG_X86_SMAP
#define ASM_CLAC \
- ALTERNATIVE "", __stringify(__ASM_CLAC), X86_FEATURE_SMAP
+ ALTERNATIVE(, __ASM_CLAC, X86_FEATURE_SMAP)
#define ASM_STAC \
- ALTERNATIVE "", __stringify(__ASM_STAC), X86_FEATURE_SMAP
+ ALTERNATIVE(, __ASM_STAC, X86_...
2013 May 21
7
[Patch[ xl problems with xendomains
...'d, etc, but it appears to work for auto
start, save and restore.
Thanks for reading and I hope this makes sense,
Ian.
Signed-off-by: Ian MURRAY <murrayie@yahoo.co.uk>
--- xendomains.422.orig 2013-05-19 18:06:18.525195879 +0100
+++ xendomains 2013-05-21 21:27:57.253429073 +0100
@@ -28,10 +28,12 @@
### END INIT INFO
CMD=xm
++HEADCOMP="LinuxGuestRecord"
$CMD list &> /dev/null
if test $? -ne 0
then
CMD=xl
+ HEADCOMP="Xen saved domain"
fi
$CMD list &> /dev/null
@@ -255,7 +257,7 @@
for dom in $XENDOMAINS_SAVE/...
2016 Jan 17
1
[PATCH klibc] run-init: Add dry-run mode
...uot;, program, error, strerror(errno));
- return 1;
+ if (error) {
+ fprintf(stderr, "%s: %s: %s\n", program, error, strerror(errno));
+ return 1;
+ } else {
+ /* Must have been a dry run */
+ return 0;
+ }
}
--- a/usr/kinit/run-init/run-init.h
+++ b/usr/kinit/run-init/run-init.h
@@ -28,7 +28,10 @@
#ifndef RUN_INIT_H
#define RUN_INIT_H
+#include <stdbool.h>
+
const char *run_init(const char *realroot, const char *console,
- const char *drop_caps, const char *init, char **initargs);
+ const char *drop_caps, bool dry_run,
+ const char *init, char **inita...
2007 Oct 23
0
6 commits - libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_script_function.c libswfdec/swfdec_flash_security.c
...* key);
gboolean swfdec_security_allow_url (SwfdecSecurity * guard,
const SwfdecURL * url);
diff --git a/libswfdec/swfdec_security_allow.c b/libswfdec/swfdec_security_allow.c
index 98d915e..87730fc 100644
--- a/libswfdec/swfdec_security_allow.c
+++ b/libswfdec/swfdec_security_allow.c
@@ -28,10 +28,10 @@
G_DEFINE_TYPE (SwfdecSecurityAllow, swfdec_security_allow, SWFDEC_TYPE_SECURITY)
-static SwfdecSecurity *
+static gboolean
swfdec_security_allow_allow (SwfdecSecurity *guard, SwfdecSecurity *key)
{
- return g_object_ref (key);
+ return TRUE;
}
static gboolean
commit 7ba31f...
2016 Apr 21
0
[PATCH 17/24] drm/savage: add extern C guard for the UAPI header
...<emil.l.velikov at gmail.com>
---
include/uapi/drm/savage_drm.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/uapi/drm/savage_drm.h b/include/uapi/drm/savage_drm.h
index 5741474..0f6edde 100644
--- a/include/uapi/drm/savage_drm.h
+++ b/include/uapi/drm/savage_drm.h
@@ -28,6 +28,10 @@
#include "drm.h"
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
#ifndef __SAVAGE_SAREA_DEFINES__
#define __SAVAGE_SAREA_DEFINES__
@@ -209,4 +213,8 @@ union drm_savage_cmd_header {
} clear1; /* SAVAGE_CMD_CLEAR data */
};
+#if defined(__cplusplus)
+}...
2019 Feb 08
0
[PATCH] drm/virtio: do NOT reuse resource ids
...o/virtgpu_object.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/virtio/virtgpu_object.c b/drivers/gpu/drm/virtio/virtgpu_object.c
index f39a183d59..e7e9460350 100644
--- a/drivers/gpu/drm/virtio/virtgpu_object.c
+++ b/drivers/gpu/drm/virtio/virtgpu_object.c
@@ -28,10 +28,21 @@
static int virtio_gpu_resource_id_get(struct virtio_gpu_device *vgdev,
uint32_t *resid)
{
+#if 0
int handle = ida_alloc(&vgdev->resource_ida, GFP_KERNEL);
if (handle < 0)
return handle;
+#else
+ static int handle;
+
+ /*
+ * FIXME: dirty hack to avoid...
2013 May 08
1
[PATCH] opusfile configury fixes.
...([m4])
+
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
AM_INIT_AUTOMAKE([1.11 foreign])
AM_MAINTAINER_MODE([enable])
-LT_INIT
-
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
-
-AC_CONFIG_MACRO_DIR([m4])
dnl Library versioning for libtool.
dnl Please update these for releases.
@@ -29,6 +28,10 @@
AC_SUBST(OP_LT_REVISION)
AC_SUBST(OP_LT_AGE)
+AC_CANONICAL_HOST
+AM_PROG_LIBTOOL
+AM_PROG_CC_C_O
+
CC_CHECK_CFLAGS_APPEND(
[-std=c89 -pedantic -Wall -Wextra -Wno-parentheses -Wno-long-long])
@@ -62,15 +65,15 @@
AM_COND_IF(OP_WIN32,
AS_IF([test "x$enable_http" != "x...
2017 Oct 04
2
Re: [PATCH v2 2/2] builder: Choose better weights in the planner.
...on the actual logic in the planner, since I admit I did
not have an in-depth look at it.
> diff --git a/common/mlutils/unix_utils-c.c b/common/mlutils/unix_utils-c.c
> index 657852ef2..340fdec44 100644
> --- a/common/mlutils/unix_utils-c.c
> +++ b/common/mlutils/unix_utils-c.c
> @@ -28,10 +28,18 @@
> #include <errno.h>
> #include <sys/types.h>
>
> +#ifdef HAVE_SYS_STATFS_H
> +#include <sys/statfs.h>
> +#endif
> +
> #ifdef HAVE_SYS_STATVFS_H
> #include <sys/statvfs.h>
> #endif
>
> +#ifdef HAVE_SYS_VFS_H
> +#in...
1998 Sep 04
0
Linux SMB Mount utils patch
...bscribed to this list, so please CC all
responses/flames/complaints/etc. to PELaufer@CSUPomona.edu
Thank you,
Paul Laufer
-------------- next part --------------
diff -urN samba-1.9.18p10-orig/source/Makefile samba-1.9.18p10/source/Makefile
--- samba-1.9.18p10-orig/source/Makefile Mon Jun 15 10:32:28 1998
+++ samba-1.9.18p10/source/Makefile Thu Sep 3 12:56:17 1998
@@ -200,7 +200,7 @@
# you must use the smbfs utilities from
# ftp://ftp.gwdg.de/pub/linux/misc/smbfs
-# MOUNT_PROGS = smbmount smbmnt smbumount
+MOUNT_PROGS = smbmount smbmnt smbumount
# Use this for Linux with shadow password...
2010 Feb 02
0
[Security] Loofah has an HTML injection / XSS vulnerability, please upgrade to 0.4.6
...quot;).inner_text
end
alias :inner_text :text
alias :to_str :text
diff --git a/lib/loofah/html/document_fragment.rb
b/lib/loofah/html/document_fragment.rb
index feed705..9c023af 100644
--- a/lib/loofah/html/document_fragment.rb
+++ b/lib/loofah/html/document_fragment.rb
@@ -28,10 +26,11 @@ module Loofah
alias :serialize :to_s
#
- # Returns a plain-text version of the markup contained by the
fragment
+ # Returns a plain-text version of the markup contained by the
fragment,
+ # with HTML entities encoded.
#
def text
- s...
2014 Sep 26
0
[RFC PATCH 7/7] drm/prime: Support explicit fence on export
...Lauri Peltonen <lpeltonen at nvidia.com>
---
drivers/gpu/drm/drm_prime.c | 41 +++++++++++++++++++++++++++++++++--------
include/uapi/drm/drm.h | 9 ++++++++-
2 files changed, 41 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c
index 2807a77..c69df2e 100644
--- a/drivers/gpu/drm/drm_prime.c
+++ b/drivers/gpu/drm/drm_prime.c
@@ -28,8 +28,10 @@
#include <linux/export.h>
#include <linux/dma-buf.h>
+#include <linux/reservation.h>
#include <drm/drmP.h>
#include "drm_internal.h"
+#include ".....
2011 Jul 17
3
[PATCHv9] vhost: experimental tx zero-copy support
...t.c
+++ b/drivers/vhost/net.c
@@ -12,6 +12,7 @@
#include <linux/virtio_net.h>
#include <linux/miscdevice.h>
#include <linux/module.h>
+#include <linux/moduleparam.h>
#include <linux/mutex.h>
#include <linux/workqueue.h>
#include <linux/rcupdate.h>
@@ -28,10 +29,18 @@
#include "vhost.h"
+static int zcopytx;
+module_param(zcopytx, int, 0444);
+MODULE_PARM_DESC(lnksts, "Enable Zero Copy Transmit");
+
/* Max number of bytes transferred before requeueing the job.
* Using this limit prevents one virtqueue from starving others....
2011 Jul 17
3
[PATCHv9] vhost: experimental tx zero-copy support
...t.c
+++ b/drivers/vhost/net.c
@@ -12,6 +12,7 @@
#include <linux/virtio_net.h>
#include <linux/miscdevice.h>
#include <linux/module.h>
+#include <linux/moduleparam.h>
#include <linux/mutex.h>
#include <linux/workqueue.h>
#include <linux/rcupdate.h>
@@ -28,10 +29,18 @@
#include "vhost.h"
+static int zcopytx;
+module_param(zcopytx, int, 0444);
+MODULE_PARM_DESC(lnksts, "Enable Zero Copy Transmit");
+
/* Max number of bytes transferred before requeueing the job.
* Using this limit prevents one virtqueue from starving others....
2016 May 03
2
[PATCH 1/2] Revert "php: Fix the tests ... again."
...verts commit 0d69eab98f0bd5dd2d218ce5adcafdeb13f9d90d.
---
php/run-php-tests.sh | 17 +++++------------
1 file changed, 5 insertions(+), 12 deletions(-)
diff --git a/php/run-php-tests.sh b/php/run-php-tests.sh
index 80758bd..e5cfc0d 100755
--- a/php/run-php-tests.sh
+++ b/php/run-php-tests.sh
@@ -28,13 +28,10 @@ cd extension
# won't get passed down to the script. Furthermore, setting debug or
# trace isn't very useful anyway because the PHP test script mixes
# stdout and stderr together and compares this to the expected output,
-# so you'd just get failures for every test.
-#
-...