search for: 22,6

Displaying 20 results from an estimated 663 matches for "22,6".

Did you mean: 322,6
2004 Sep 10
0
new checkins
...x: file_decoder.h =================================================================== RCS file: /cvsroot/flac/flac/include/FLAC/file_decoder.h,v retrieving revision 1.13 diff -u -r1.13 file_decoder.h --- file_decoder.h 26 Jan 2002 17:36:39 -0000 1.13 +++ file_decoder.h 6 May 2002 15:07:21 -0000 @@ -22,6 +22,10 @@ #include "stream_decoder.h" +#ifdef __cplusplus +extern "C" { +#endif + typedef enum { FLAC__FILE_DECODER_OK = 0, FLAC__FILE_DECODER_SEEKING, /*@@@ NOTE: unused; remove this in the next minor-version */ @@ -133,5 +137,9 @@ FLAC__bool FLAC__file_decoder_...
2004 Sep 10
3
new checkins
FYI, I have checked in a few interesting things. One is a speedup to the decoder (about 15% improvement in overall decode time). Another is a new interface to FLAC file metadata. If you're curious look at include/FLAC/metadata.h. It is basically a collection of object manipulation routines and iterators that make it pretty easy to add/edit/delete FLAC metadata in files efficiently. The
2013 Oct 07
4
AutoBL issues on CentOS 6
...on on a CentOS 6 box and ran into the following problems: 1) The action.AutoBL doesn''t work for me until I patch it like so: --- /usr/share/shorewall/action.AutoBL.orig 2013-10-01 00:59:42.000000000 +0200 +++ /usr/share/shorewall/action.AutoBL 2013-10-07 14:44:31.530841099 +0200 @@ -22,6 +22,9 @@ DEFAULTS -,60,5,2,300,DROP,info ?begin perl + +use Shorewall::Config; + my ( $event, $interval, $count, $successive, $bltime, $disposition, $level ) = get_action_params(7); fatal_error "The event name parameter to AutoBL is required" unless supplied $event; 2...
2014 Oct 15
1
syslinux efi configuration file name proposal
...CD/DVD to FAT32 flash disk. > > Regards > -Klaus A simpler patch for just the config filenames (whitespace changed for email): diff --git a/core/fs/lib/loadconfig.c b/core/fs/lib/loadconfig.c index 95e6f3f..47101f9 100644 --- a/core/fs/lib/loadconfig.c +++ b/core/fs/lib/loadconfig.c @@ -22,6 +22,11 @@ int generic_open_config(struct com32_filedata *filedata) }; static const char *filenames[] = { "extlinux.conf", +#if defined(__FIRMWARE_EFI64__) + "syslnx64.cfg", +#elif defined(__FIRMWARE_EFI32__) + "syslnx32.cfg", +#endif...
2015 Jul 23
2
[PATCH] appliance: exclude /usr/lib/firmware
...MB [xz-compressed], which is the same as for libguestfs 1.28. --- appliance/excludefiles.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appliance/excludefiles.in b/appliance/excludefiles.in index d3c66cc..a63eca9 100644 --- a/appliance/excludefiles.in +++ b/appliance/excludefiles.in @@ -22,6 +22,9 @@ dnl The right kernel modules are added back by supermin. -/boot/* -/lib/modules/* +dnl Firmware blobs should not be required by a virtual machine. +-/usr/lib/firmware/* + -/usr/lib/locale/* -/usr/share/cracklib/* -/usr/share/doc/* -- 2.4.3
2010 Sep 03
1
[PATCH] Adding some control over usages in the network creation/edition form
...emove + removed_ids = svc_destroy_all(params[:ids]) + render :json => { :success => true, :removed => removed_ids } + end +end diff --git a/src/app/models/usage.rb b/src/app/models/usage.rb index 59b0e48..883a888 100644 --- a/src/app/models/usage.rb +++ b/src/app/models/usage.rb @@ -22,6 +22,6 @@ class Usage < ActiveRecord::Base validates_presence_of :label validates_presence_of :usage - validates_uniqueness_of :usage + # validates_uniqueness_of :usage end diff --git a/src/app/services/usage_service.rb b/src/app/services/usage_service.rb new file mode 100644 index...
2014 Oct 27
5
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...o.nl > > In particular this hunk: > > Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c > =================================================================== > --- linux-2.6.orig/arch/x86/kernel/paravirt_patch_64.c > +++ linux-2.6/arch/x86/kernel/paravirt_patch_64.c > @@ -22,6 +22,10 @@ DEF_NATIVE(pv_cpu_ops, swapgs, "swapgs") > DEF_NATIVE(, mov32, "mov %edi, %eax"); > DEF_NATIVE(, mov64, "mov %rdi, %rax"); > > +#if defined(CONFIG_PARAVIRT_SPINLOCKS)&& defined(CONFIG_QUEUE_SPINLOCK) > +DEF_NATIVE(pv_lock_ops, qu...
2014 Oct 27
5
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...o.nl > > In particular this hunk: > > Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c > =================================================================== > --- linux-2.6.orig/arch/x86/kernel/paravirt_patch_64.c > +++ linux-2.6/arch/x86/kernel/paravirt_patch_64.c > @@ -22,6 +22,10 @@ DEF_NATIVE(pv_cpu_ops, swapgs, "swapgs") > DEF_NATIVE(, mov32, "mov %edi, %eax"); > DEF_NATIVE(, mov64, "mov %rdi, %rax"); > > +#if defined(CONFIG_PARAVIRT_SPINLOCKS)&& defined(CONFIG_QUEUE_SPINLOCK) > +DEF_NATIVE(pv_lock_ops, qu...
2020 Aug 18
1
[PATCH -next] vdpa: Remove duplicate include
...plicate include file Signed-off-by: YueHaibing <yuehaibing at huawei.com> --- drivers/vhost/vdpa.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/vhost/vdpa.c b/drivers/vhost/vdpa.c index 3fab94f88894..95e2b8307a2a 100644 --- a/drivers/vhost/vdpa.c +++ b/drivers/vhost/vdpa.c @@ -22,7 +22,6 @@ #include <linux/nospec.h> #include <linux/vhost.h> #include <linux/virtio_net.h> -#include <linux/kernel.h> #include "vhost.h" -- 2.17.1
2015 Jul 23
1
[PATCH v2] appliance: exclude /lib/firmware
...[xz-compressed], which is the same as for libguestfs 1.28. --- appliance/excludefiles.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appliance/excludefiles.in b/appliance/excludefiles.in index d3c66cc..574c828 100644 --- a/appliance/excludefiles.in +++ b/appliance/excludefiles.in @@ -22,6 +22,11 @@ dnl The right kernel modules are added back by supermin. -/boot/* -/lib/modules/* +dnl Firmware blobs should not be required by a virtual machine. +dnl Because of UsrMove nonsense, we need to list both directories. +-/lib/firmware/* +-/usr/lib/firmware/* + -/usr/lib/locale/* -/usr...
2012 Mar 28
1
[PATCH] java: NFC: Remove unused section from Makefile.am
--- java/Makefile.am | 6 ------ 1 files changed, 0 insertions(+), 6 deletions(-) diff --git a/java/Makefile.am b/java/Makefile.am index c753672..9c31e57 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -22,12 +22,6 @@ java_prefix = com/redhat/et/libguestfs # Old RHEL 5 autoconf doesn't have builddir. builddir ?= $(top_builddir)/java -generator_built = \ - Makefile.inc \ - $(java_built_sources) \ - com_redhat_et_libguestfs_GuestFS.c \ - Bindtests.java - # Pull in automatically generated built...
2006 May 05
0
[patch] m68k build crt0
...' too many '_'. never seen jbsr, converted that to jsr. Signed-off-by: maximilian attems <maks@sternwelten.at> diff --git a/usr/klibc/arch/m68k/crt0.S b/usr/klibc/arch/m68k/crt0.S index 6eb3b51..780d7a5 100644 --- a/usr/klibc/arch/m68k/crt0.S +++ b/usr/klibc/arch/m68k/crt0.S @@ -22,6 +22,6 @@ _start: # Push ELF argument pointer on the stack move.l %d0, -(%a7) - jbsr ___libc_init + jsr __libc_init .size _start, .-_start
2013 Dec 07
1
Potential crash due to missing declaration of strerror
...======================================================== RCS file: /cvs/openssh/openbsd-compat/bsd-setres_id.c,v retrieving revision 1.1 diff -u -p -r1.1 bsd-setres_id.c --- openbsd-compat/bsd-setres_id.c 5 Nov 2012 06:04:37 -0000 1.1 +++ openbsd-compat/bsd-setres_id.c 7 Dec 2013 10:57:31 -0000 @@ -22,6 +22,7 @@ #include <stdarg.h> #include <unistd.h> +#include <string.h> #include "log.h" Hope that helps, Corinna -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 836 bytes D...
2010 Mar 11
1
[PATCH] Changes the order of ovirt-early and ovirt-awake.
...-Start: ovirt-early +# Required-Start: ovirt-awake # Default-Start: 2 3 4 5 # Description: Performs managed node configuration functions. ### END INIT INFO diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index bd50ffd..e4d5a28 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovirt-awake @@ -22,6 +22,7 @@ # ### BEGIN INIT INFO # Provides: ovirt-awake +# Required-Start: ovirt-early # Default-Start: 2 3 4 5 # Description: Managed node service to alert management servers. ### END INIT INFO diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 1ab0578..d561dc8 100755 --- a/script...
2009 Aug 05
1
[PATCH server] associated nics w/ network base class as it is in the db
.../models/physical_network.rb | 2 -- src/app/models/vlan.rb | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/models/network.rb b/src/app/models/network.rb index a4b1b8b..89f9876 100644 --- a/src/app/models/network.rb +++ b/src/app/models/network.rb @@ -22,6 +22,8 @@ class Network < ActiveRecord::Base has_and_belongs_to_many :usages, :join_table => 'networks_usages' + has_many :nics + validates_presence_of :type, :message => 'A type must be specified.' validates_presence_of :name, diff --git a/src/app/model...
2010 Mar 16
1
[PATCH] ovirt-awake improvements
...arg Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-awake | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index d5865c5..5126a54 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovirt-awake @@ -22,6 +22,7 @@ # ### BEGIN INIT INFO # Provides: ovirt-awake +# Required-Start: ovirt-early # Default-Start: 2 3 4 5 # Description: Managed node service to alert management servers. ### END INIT INFO @@ -30,7 +31,6 @@ # config: /etc/sysconfig/node-config . /etc/init.d/functions -. /usr/libexec...
2018 Jan 26
1
[RFC v2 3/4] drm/nouveau: Add support for BLCG on Kepler2
...gk104_i2c_new, > diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.c > index a38e19b61c1d..38d3328e45f1 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.c > +++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.c > @@ -22,6 +22,7 @@ > * Authors: Ben Skeggs <bskeggs at redhat.com> > */ > #include "gf100.h" > +#include "gk104.h" > #include "ctxgf100.h" > > #include <subdev/timer.h> > @@ -156,6 +157,66 @@ gk110_gr_pack_mmio[] = { > {} &...
2011 Dec 06
1
[PATCH] let the user explicitly choose ruby and rake programs
...}/bindtests.rb > bindtests.tmp +$RUBY -I${srcdir}/lib -Iext/guestfs ${srcdir}/bindtests.rb > bindtests.tmp diff -u ${srcdir}/../bindtests bindtests.tmp diff --git a/ruby/run-ruby-tests b/ruby/run-ruby-tests index e21899a..c618241 100755 --- a/ruby/run-ruby-tests +++ b/ruby/run-ruby-tests @@ -22,6 +22,6 @@ set -e # is bound to fail because they all use a single test image file). for f in tests/tc_*.rb; do - echo rake test "$@" TEST="$f" - rake test "$@" TEST="$f" + echo $RAKE test "$@" TEST="$f" + $RAKE test "...
2024 Feb 13
9
[PATCH v2 0/8] fbdev: Clean up include dependencies in header
Remove unnecessary dependencies in the include statements of the header file <linux/fb.h>. Several files throughout the kernel include the fbdev header, so reducing dependencies positively affects other subsystems as well. Also fix up nouveau and fbtft, which need backlight.h in some their source files. v2: * include backlight.h in fbtft (kernel test robot) Thomas Zimmermann (8):
2024 Feb 19
9
[PATCH v3 0/9] fbdev: Clean up include dependencies in header
Remove unnecessary dependencies in the include statements of the header file <linux/fb.h>. Several files throughout the kernel include the fbdev header, so reducing dependencies positively affects other subsystems as well. Also fix up corgi-lcd, nouveau and fbtft, which need backlight.h in some of their source files. v3: * include backlight.h in corgi-lcd (kernel test robot) * grammar