search for: 17,10

Displaying 20 results from an estimated 82 matches for "17,10".

Did you mean: 1,10
2013 Jun 01
1
[PATCH] Add missing config.h includes
...oundation, Inc., */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "plugin.h" #include <stdlib.h> diff --git a/src/plugin_xmms/http.c b/src/plugin_xmms/http.c index c51f1b8..2f31576 100644 --- a/src/plugin_xmms/http.c +++ b/src/plugin_xmms/http.c @@ -17,6 +17,10 @@ */ /* modified for FLAC support by Steven Richman (2003) */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "plugin.h" #include <sys/types.h> diff --git a/src/plugin_xmms/plugin.c b/src/plugin_xmms/plugin.c index c99b52e..50a109f 100644 -...
2016 May 12
2
[PATCH 1/2] Revert "appliance: init: run ldconfig"
...efer that we understood which libraries need ldconfig to be run, and fix that. We could also consider running ldconfig in parallel, but since it might be required by just about any binary that the init script runs it's not clear what benefit that gives. This reverts commit 66aa98265dd215dcd4c717e7ef6845fbac859e54. --- appliance/init | 4 ---- 1 file changed, 4 deletions(-) diff --git a/appliance/init b/appliance/init index 413a95f..419434a 100755 --- a/appliance/init +++ b/appliance/init @@ -17,10 +17,6 @@ if [ ! -d /tmp ] || [ ! -d /var/tmp ]; then chmod 1777 /tmp /var/tmp fi -#...
2014 Aug 26
1
Call for testing: OpenSSH 6.7
Good news/Bad News The test race in RHEL 3.4 seems to be gone ... but another ec.h failure ... Using http://www.mindrot.org/openssh_snap/openssh-SNAP-20140827.tar.gz OS Build_Target CC OpenSSL BUILD TEST ============== =========================== ================ ============= ====== ================= *RHEL 3.4 i386-redhat-linux gcc
2016 Apr 21
0
[PATCH 05/24] drm/exynos: add extern C guard for the UAPI header
...all through the cracks. Thanks Emil --- include/uapi/drm/exynos_drm.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/uapi/drm/exynos_drm.h b/include/uapi/drm/exynos_drm.h index 3947c2e..cb3e9f9 100644 --- a/include/uapi/drm/exynos_drm.h +++ b/include/uapi/drm/exynos_drm.h @@ -17,6 +17,10 @@ #include "drm.h" +#if defined(__cplusplus) +extern "C" { +#endif + /** * User-desired buffer creation information structure. * @@ -362,4 +366,8 @@ struct drm_exynos_ipp_event { __u32 buf_id[EXYNOS_DRM_OPS_MAX]; }; +#if defined(__cplusplus) +} +#endif...
2020 Feb 07
0
[RFC PATCH v7 03/78] KVM: add new error codes for VM introspection
...;alazar at bitdefender.com> --- include/uapi/linux/kvm_para.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/uapi/linux/kvm_para.h b/include/uapi/linux/kvm_para.h index 8b86609849b9..3ce388249682 100644 --- a/include/uapi/linux/kvm_para.h +++ b/include/uapi/linux/kvm_para.h @@ -17,6 +17,10 @@ #define KVM_E2BIG E2BIG #define KVM_EPERM EPERM #define KVM_EOPNOTSUPP 95 +#define KVM_EAGAIN 11 +#define KVM_ENOENT ENOENT +#define KVM_ENOMEM ENOMEM +#define KVM_EBUSY EBUSY #define KVM_HC_VAPIC_POLL_IRQ 1 #define KVM_HC_MMU_OP 2
2020 Mar 05
0
[PATCH 20/22] drm/vkms: Use simple encoder
....c +++ b/drivers/gpu/drm/vkms/vkms_output.c @@ -3,6 +3,7 @@ #include "vkms_drv.h" #include <drm/drm_atomic_helper.h> #include <drm/drm_probe_helper.h> +#include <drm/drm_simple_kms_helper.h> static void vkms_connector_destroy(struct drm_connector *connector) { @@ -17,10 +18,6 @@ static const struct drm_connector_funcs vkms_connector_funcs = { .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, }; -static const struct drm_encoder_funcs vkms_encoder_funcs = { - .destroy = drm_encoder_cleanup, -}; - static int vkms_conn_get_modes(struct drm_co...
2020 Apr 01
0
[PATCH 20/22] drm/vkms: Use simple encoder
...series, compiled it, and when I tried > `make INSTALL_MOD_PATH=/PATH/ modules_instal` I got the following > message: > > depmod: ERROR: Cycle detected: drm_kms_helper -> drm -> drm_kms_helper > depmod: ERROR: Found 2 modules in dependency cycles! > make: *** [Makefile:1317: _modinst_post] Error 1 > > I cleaned up my local files and tried again, but I got the same error; > If I just use `drm-misc-next` everything is fine. Did I miss something? I figured out that this problem is caused by the patch for the writeback encoder, which is located in the DRM core...
2019 Aug 11
0
[PATCH 2/2] Rust bindings: Make it able to publish this crate
...details of how to publish this crate. --- rust/Cargo.toml.in | 5 ++++- rust/README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 rust/README.md diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index b61e3ec7f..d217a530e 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -17,7 +17,10 @@ [package] name = "guestfs" -version = "@VERSION@" +version = "0.1.0-compat@VERSION@" edition = "2018" +authors = ["Hiroyuki Katsura <hiroyuki.katsura.0513@gmail.com&...
2015 Apr 08
0
[PATCH 04/10] Use AC_CONFIG_LIBOBJ_DIR and AC_REPLACE_FUNCS to adhere to autoconf standards
--- configure.ac | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 2d638fc..58d0843 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,10 @@ LDFLAGS=${LDFLAGS-""} AC_CANONICAL_HOST +dnl define the directory for replacement function since AC_LIBOBJ does not +dnl officially support subdirs and fails with automake +AC_CONFIG_LIBOBJ_DIR([lib]) + # We must decide this before testing the compiler. # Please allow...
2007 May 09
1
[patch 4/9] lguest: the asm offsets
...> --- arch/i386/kernel/asm-offsets.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff -puN arch/i386/kernel/asm-offsets.c~lguest-the-asm-offsets arch/i386/kernel/asm-offsets.c --- a/arch/i386/kernel/asm-offsets.c~lguest-the-asm-offsets +++ a/arch/i386/kernel/asm-offsets.c @@ -17,6 +17,10 @@ #include <asm/pgtable.h> #include <asm/thread_info.h> #include <asm/elf.h> +#ifdef CONFIG_LGUEST_GUEST +#include <linux/lguest.h> +#include "../../../drivers/lguest/lg.h" +#endif #define DEFINE(sym, val) \ asm volatile("\n->"...
2000 Aug 27
1
Login Patch
...GRAM to PATHS in Makefile.in. Of course you need to re-run autoconf to pick up the new changes. (Please CC: me as I'm not on this list) Wil -- W. Reilly Cooley, Esq. wcooley at wirex.com -------------- next part -------------- --- openssh-2.1.1p4/configure.in.orig Thu Aug 17 11:11:27 2000 +++ openssh-2.1.1p4/configure.in Thu Aug 17 11:23:17 2000 @@ -13,6 +13,8 @@ AC_SUBST(PERL) AC_PATH_PROG(ENT, ent) AC_SUBST(ENT) +AC_PATH_PROG(LOGIN_PROGRAM, login) +AC_SUBST(LOGIN_PROGRAM) if test -z "$LD" ; then LD=$CC --- openssh-2.1.1p4/Makefile.in.orig Thu Aug 17...
2007 May 09
1
[patch 4/9] lguest: the asm offsets
...> --- arch/i386/kernel/asm-offsets.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff -puN arch/i386/kernel/asm-offsets.c~lguest-the-asm-offsets arch/i386/kernel/asm-offsets.c --- a/arch/i386/kernel/asm-offsets.c~lguest-the-asm-offsets +++ a/arch/i386/kernel/asm-offsets.c @@ -17,6 +17,10 @@ #include <asm/pgtable.h> #include <asm/thread_info.h> #include <asm/elf.h> +#ifdef CONFIG_LGUEST_GUEST +#include <linux/lguest.h> +#include "../../../drivers/lguest/lg.h" +#endif #define DEFINE(sym, val) \ asm volatile("\n->"...
2002 May 12
1
minor error in "stderr & stdout" web site FAQ
...t;&1 directs stdout to log and stderr to the same location stdout is current redirected, the log file. Here is a suggested patch for the FAQ on the web site at http://samba.anu.edu.au/rsync/FAQ.html --- rsync.faq.orig Sun May 12 16:04:12 2002 +++ rsync.faq Sun May 12 16:11:25 2002 @@ -17,10 +17,11 @@ they appear on stderr at the local computer. rsync can't intercept them. If you have a problem with scripts or cron jobs that produce stderr then I -suggest you use your shell to redirect stderr to stdout. For example you +suggest you use your shell to redirect stderr and stdou...
2013 Aug 16
0
Bug#688308: Bug#688308: installing some additional docs
.../debian/changelog index 6100e75..8520329 100644 --- a/xen/debian/changelog +++ b/xen/debian/changelog @@ -1,5 +1,6 @@ xen (4.3.0-1) UNRELEASED; urgency=low + [ Bastian Blank ] * New upstream release. * Call configure with proper arguments. * Remove now empty xen-docs package. @@ -16,6 +17,10 @@ xen (4.3.0-1) UNRELEASED; urgency=low - Fix fallout from harderning flags. * Update Standards-Version to 3.9.4. No changes. + [ Ian Campbell ] + * Install some user facing docs in xen-utils-common. + (Closes: #688308, #407143) + -- Bastian Blank <waldi at debian.org> T...
2014 Mar 05
0
[PATCH] Btrfs-progs: remove unused variable and update btrfs-image man page
...of(*chunk); - new_cur += sizeof(*chunk); } else { fprintf(stderr, "Bogus key in the sys chunk array " "%d\n", key.type); diff --git a/man/btrfs-image.8.in b/man/btrfs-image.8.in index d5ba594..3f51f3f 100644 --- a/man/btrfs-image.8.in +++ b/man/btrfs-image.8.in @@ -17,7 +17,10 @@ is the image file that btrfs-image creates. When used with \fB-r\fP option, .SH OPTIONS .TP \fB\-r\fP -restore metadump image. +Restore metadump image. By default, this fixes super's chunk tree, by +using 1 stripe pointing to primary device, so that file system can be +restored b...
2010 Jul 16
0
Mixed Conditional Logit with nested data
...1,11,B,0,0,0,1,1,0,0,0,0,1 1,12,A,1,1,0,0,0,1,0,1,0,0 1,12,B,0,0,1,0,0,0,1,0,1,0 1,13,A,0,0,0,1,0,0,1,0,1,0 1,13,B,1,1,0,0,0,1,0,0,0,1 1,14,A,0,0,0,1,0,0,1,0,0,1 1,14,B,1,0,1,0,1,0,0,1,0,0 1,15,A,1,1,0,0,1,0,0,0,1,0 1,15,B,0,0,0,1,0,1,0,0,0,1 1,16,A,1,1,0,0,0,0,1,1,0,0 1,16,B,0,0,1,0,0,1,0,0,1,0 1,17,A,1,0,1,0,1,0,0,0,1,0 1,17,B,0,0,0,1,0,0,1,1,0,0 1,18,A,1,1,0,0,1,0,0,1,0,0 1,18,B,0,0,0,1,0,0,1,0,0,1 1,19,A,1,1,0,0,1,0,0,0,0,1 1,19,B,0,0,0,1,0,1,0,0,1,0 1,20,A,0,0,0,1,0,0,1,0,0,1 1,20,B,1,0,1,0,1,0,0,1,0,0 1,21,A,1,1,0,0,0,1,0,1,0,0 1,21,B,0,0,1,0,0,0,1,0,0,1 1,22,A,1,0,0,1,1,0,0,1,0,0 1,22,B,...
2023 Aug 29
1
[PATCH drm-misc-next] drm/nouveau: fence: fix undefined fence state after emit
...++++++++++++++++++++----- drivers/gpu/drm/nouveau/nouveau_fence.h | 5 ++-- drivers/gpu/drm/nouveau/nouveau_gem.c | 5 +--- 8 files changed, 45 insertions(+), 40 deletions(-) diff --git a/drivers/gpu/drm/nouveau/dispnv04/crtc.c b/drivers/gpu/drm/nouveau/dispnv04/crtc.c index a34924523133..a34917b048f9 100644 --- a/drivers/gpu/drm/nouveau/dispnv04/crtc.c +++ b/drivers/gpu/drm/nouveau/dispnv04/crtc.c @@ -1122,18 +1122,11 @@ nv04_page_flip_emit(struct nouveau_channel *chan, PUSH_NVSQ(push, NV_SW, NV_SW_PAGE_FLIP, 0x00000000); PUSH_KICK(push); - ret = nouveau_fence_new(pfence); + ret = n...
2013 Aug 16
3
Bug#688308: installing some additional docs
.../debian/changelog index 6100e75..8c81419 100644 --- a/xen/debian/changelog +++ b/xen/debian/changelog @@ -1,5 +1,6 @@ xen (4.3.0-1) UNRELEASED; urgency=low + [ Bastian Blank ] * New upstream release. * Call configure with proper arguments. * Remove now empty xen-docs package. @@ -16,6 +17,9 @@ xen (4.3.0-1) UNRELEASED; urgency=low - Fix fallout from harderning flags. * Update Standards-Version to 3.9.4. No changes. + [ Ian Campbell ] + * Install some user facing docs in xen-utils-common. (Closes: 688308) + -- Bastian Blank <waldi at debian.org> Tue, 23 Jul 2013...
2004 Sep 10
0
1.0 source candidate
...- mdz -------------- next part -------------- Index: Makefile.am =================================================================== RCS file: /cvsroot/flac/flac/Makefile.am,v retrieving revision 1.2 diff -u -r1.2 Makefile.am --- Makefile.am 2001/06/08 00:13:21 1.2 +++ Makefile.am 2001/07/21 01:58:17 @@ -34,7 +34,7 @@ # -SUBDIRS = src test +SUBDIRS = doc include man src test DISTCLEANFILES = libtool-disable-static Index: configure.in =================================================================== RCS file: /cvsroot/flac/flac/configure.in,v retrieving revision 1.24 diff -u -r1.24 c...
2014 Jun 24
0
[PATCH 1/2] x86, ia64: Move EFI_FB vga_default_device() initialization to pci_vga_fixup()
...t; + } > + } > + > /* Is VGA routed to us? */ > bus = pdev->bus; > while (bus) { > diff --git a/arch/x86/include/asm/vga.h b/arch/x86/include/asm/vga.h > index 44282fb..c4b9dc2 100644 > --- a/arch/x86/include/asm/vga.h > +++ b/arch/x86/include/asm/vga.h > @@ -17,10 +17,4 @@ > #define vga_readb(x) (*(x)) > #define vga_writeb(x, y) (*(y) = (x)) > > -#ifdef CONFIG_FB_EFI > -#define __ARCH_HAS_VGA_DEFAULT_DEVICE > -extern struct pci_dev *vga_default_device(void); > -extern void vga_set_default_device(struct pci_dev *pdev); > -#endif...