search for: 32,15

Displaying 20 results from an estimated 34 matches for "32,15".

Did you mean: 42,15
2015 Dec 31
0
[PATCH v2 31/32] sh: support a 2-byte smp_store_mb
...at redhat.com> --- arch/sh/include/asm/barrier.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/arch/sh/include/asm/barrier.h b/arch/sh/include/asm/barrier.h index f887c64..0cc5735 100644 --- a/arch/sh/include/asm/barrier.h +++ b/arch/sh/include/asm/barrier.h @@ -32,7 +32,15 @@ #define ctrl_barrier() __asm__ __volatile__ ("nop;nop;nop;nop;nop;nop;nop;nop") #endif -#define __smp_store_mb(var, value) do { (void)xchg(&var, value); } while (0) +#define __smp_store_mb(var, value) do { \ + if (sizeof(var) != 4 && sizeof(var) != 1) { \ + W...
2007 Jul 26
1
tdm400p fxs module busy
...company. TDM400p with 4 FXS modules to send/receive faxes and make credit card transactions. I have an analogue phone on the tdm400p for testing. I can receive calls to the exten. There is a dialing tone. However, when I try to make a call I get a busy signal. Asterisk stated busy then hungup zap/32-1 why wont asterisk supply a resource from the te110p pri card for use by the tdm400p FXS (fxo signalling)? configs below: [root at asterisk etc]# more zaptel.conf # Autogenerated by /usr/sbin/genzaptelconf -- do not hand edit # Zaptel Configuration File # # This file is parsed by the Zaptel Co...
2009 Aug 12
1
[PATCH libguestfs] build: enable automake's color-tests option
...OMAKE to exclude the offending option. --- autogen.sh | 9 +++++++++ configure.ac | 2 +- daemon/configure.ac | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 5179623..25cf94e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -32,6 +32,15 @@ else ./bootstrap && echo "$t" > $curr_status fi +# In order to accommodate versions of automake that are older than 1.11 +# remove options that we find useful but that would otherwise not be recognized. +v=$(automake --version | { read ver && echo ${v...
2020 May 14
0
[PATCH AUTOSEL 5.6 32/62] virtio-blk: handle block_device_operations callbacks after hot unplug
...vers/block/virtio_blk.c | 86 ++++++++++++++++++++++++++++++++++---- 1 file changed, 78 insertions(+), 8 deletions(-) diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c index 0736248999b0d..d52f33881ab6e 100644 --- a/drivers/block/virtio_blk.c +++ b/drivers/block/virtio_blk.c @@ -32,6 +32,15 @@ struct virtio_blk_vq { } ____cacheline_aligned_in_smp; struct virtio_blk { + /* + * This mutex must be held by anything that may run after + * virtblk_remove() sets vblk->vdev to NULL. + * + * blk-mq, virtqueue processing, and sysfs attribute code paths are + * shut down bef...
2015 May 15
0
[RFC V3 5/8] aarch64: celt_pitch_xcorr: Fixed point intrinsics
...insertions(+) diff --git a/celt/arm/celt_neon_intr.c b/celt/arm/celt_neon_intr.c index 47dce15..be978a0 100644 --- a/celt/arm/celt_neon_intr.c +++ b/celt/arm/celt_neon_intr.c @@ -249,4 +249,272 @@ void celt_pitch_xcorr_float_neon(const opus_val16 *_x, const opus_val16 *_y, (const float32_t *)_y+i, (float32_t *)xcorr+i, len); } } +#else /* FIXED POINT */ + +/* + * Function: xcorr_kernel_neon_fixed + * --------------------------------- + * Computes 8 correlation values and stores them in sum[8] + */ +static void xcorr_kernel_neon_fixed(const int16_t *x, const int16_t *y, +...
2016 Apr 12
3
Debian 8.4 : dahdi startup scripts ?
...in/dahdi_scan +./usr/sbin/dahdi_span_assignments +./usr/sbin/dahdi_span_types ./usr/sbin/dahdi_test ./usr/sbin/dahdi_tool -./usr/sbin/fpga_load +./usr/sbin/dahdi_waitfor_span_assignments ./usr/sbin/fxotune -./usr/sbin/fxstest ./usr/sbin/lsdahdi ./usr/sbin/sethdlc ./usr/sbin/twinstar @@ -29,6 +32,15 @@ ./usr/share/ ./usr/share/dahdi/ ./usr/share/dahdi/astribank_hook +./usr/share/dahdi/dahdi_auto_assign_compat +./usr/share/dahdi/dahdi_handle_device +./usr/share/dahdi/dahdi_span_config +./usr/share/dahdi/handle_device.d/ +./usr/share/dahdi/handle_device.d/10-span-types +./usr/share/dahdi/h...
2015 May 08
0
[[RFC PATCH v2]: Ne10 fft fixed and previous 5/8] aarch64: celt_pitch_xcorr: Fixed point intrinsics
...insertions(+) diff --git a/celt/arm/celt_neon_intr.c b/celt/arm/celt_neon_intr.c index 47dce15..be978a0 100644 --- a/celt/arm/celt_neon_intr.c +++ b/celt/arm/celt_neon_intr.c @@ -249,4 +249,272 @@ void celt_pitch_xcorr_float_neon(const opus_val16 *_x, const opus_val16 *_y, (const float32_t *)_y+i, (float32_t *)xcorr+i, len); } } +#else /* FIXED POINT */ + +/* + * Function: xcorr_kernel_neon_fixed + * --------------------------------- + * Computes 8 correlation values and stores them in sum[8] + */ +static void xcorr_kernel_neon_fixed(const int16_t *x, const int16_t *y, +...
2014 Mar 10
2
[PATCH] builder: complete architecture handling
...scheme is adapted to account for the architecture (with --print-cache showing the architecture as well). Furthermore, the short output of --list shows the architecture as well, like the other --list outputs do. --- builder/Makefile.am | 9 +++++- builder/architecture.ml | 32 +++++++++++++++++++++ builder/builder.ml | 28 ++++++++++-------- builder/cmdline.ml | 29 +++++++++++++++++-- builder/downloader.ml | 8 +++--- builder/downloader.mli | 10 +++---- builder/index_parser.ml | 22 ++++++++++---- builder...
2014 Mar 11
4
Re: [PATCH] builder: complete architecture handling
...elete_cache_mode () = mode := `Delete_cache in > > > > + let arch = ref "" in > > + let allow_foreign_arch_ops = ref false in > > Can't we detect allow_foreign_arch_ops automatically? > > For normal uses of libguestfs, the only case that matters is a 32 bit > requested guest architecture on a compatible 64 bit host (eg. ppc on > ppc64 host). So a simple mapping table of host architecture -> > compatible guest architectures, and drop the option. Sounds sensible, will do. > > diff --git a/builder/uname-c.c b/builder/uname-c.c &g...
2016 Feb 06
2
D16945: LLVM overhaul to avoid linking LLVM component libraries with libLLVM
Hans, I have posted a complete patch for solving the linkage issues with LLVM_LINK_LLVM_DYLIB on Phabricator at http://reviews.llvm.org/D16945. The bulk of the fix the simple changes of... Index: cmake/modules/AddLLVM.cmake =================================================================== --- cmake/modules/AddLLVM.cmake (revision 259743) +++ cmake/modules/AddLLVM.cmake (working copy) @@
2016 Feb 09
2
D16945: LLVM overhaul to avoid linking LLVM component libraries with libLLVM
...dif() + endif() target_link_libraries(${executable} LLVM) endif() Index: utils/unittest/CMakeLists.txt =================================================================== --- utils/unittest/CMakeLists.txt (revision 260200) +++ utils/unittest/CMakeLists.txt (working copy) @@ -32,9 +32,15 @@ add_definitions( -DGTEST_HAS_PTHREAD=0 ) endif() -set(LIBS - LLVMSupport # Depends on llvm::raw_ostream -) +if (LLVM_LINK_LLVM_DYLIB) + set(LIBS + LLVM # Depends on llvm::raw_ostream + ) +else() + set(LIBS + LLVMSupport # Depends on llvm::raw_ostream + ) +endif() find_...
2016 Apr 12
4
Debian 8.4 : dahdi startup scripts ?
Hello, I just made a asterisk / dahdi fresh install on Debian 8.4, and ended up with the following packages : $ sudo dpkg -l|grep -Ei 'dahdi|asterisk|libpri' ii asterisk 1:11.13.1~dfsg-2+b1 amd64 Open Source Private Branch Exchange (PBX) ii asterisk-config 1:11.13.1~dfsg-2 all Configuration
2014 Feb 13
3
Libguestfs (1.22.6) driver/changes for mingw/win32
Hi, I attached the changes I made to a vanilla libguestfs-1.22.6 in order to make it work in mingw/win32. Added is also the patch required to make QEMU compatible (add a command to QMP that lists the supported devices (the regilat way you do it print it to stderr, which is difficult to redirect in win32)). This is done on behalf of Intel Corp. Thanks, Or (oberon in irc)
2011 Apr 04
0
[PATCH] linux-2.6.18/backends: use xenbus_be.ko interfaces instead of open-coding them
...#include <linux/list.h> #include <linux/delay.h> #include <xen/balloon.h> +#include <xen/evtchn.h> +#include <xen/gnttab.h> #include <asm/hypervisor.h> #include "common.h" --- a/drivers/xen/blkback/common.h +++ b/drivers/xen/blkback/common.h @@ -32,17 +32,12 @@ #include <linux/interrupt.h> #include <linux/slab.h> #include <linux/blkdev.h> -#include <linux/vmalloc.h> #include <linux/wait.h> -#include <asm/io.h> -#include <asm/setup.h> -#include <asm/pgalloc.h> -#include <xen/evtchn.h>...
2019 Aug 13
0
[PATCH libnbd 1/4] api: Combine callback and user_data into a single struct.
...ck and user_data are combined into a single structure, eg: int64_t nbd_aio_pread (struct nbd_handle *h, void *buf, size_t count, uint64_t offset, - int (*completion_callback) (/*..*/), void *user_data, + nbd_completion_callback completion_callback, uint32_t flags); Several nbd_*_callback structures are defined. The one corresponding to the example above is: typedef struct { void *user_data; int (*callback) (unsigned valid_flag, void *user_data, int *error); } nbd_completion_callback; The nbd_aio_pread function can now be called using...
2015 Dec 31
54
[PATCH v2 00/34] arch: barrier cleanup + barriers for virt
...8 adds virt_ wrappers for __smp_, and documents them. After all this work, this requires very few lines of code in the generic header. -. Patches 29,30,33,34 convert virtio xen drivers to use the virt_xxx APIs xen patches are untested virtio ones have been tested on x86 -. Patches 31-32 teach virtio to use virt_store_mb sh architecture was missing a 2-byte smp_store_mb, the fix is trivial although my code is not optimal: if anyone cares, pls send me a patch to apply on top. I didn't build this architecture, but intel's 0-day infrastructure builds it. tes...
2015 Dec 31
54
[PATCH v2 00/34] arch: barrier cleanup + barriers for virt
...8 adds virt_ wrappers for __smp_, and documents them. After all this work, this requires very few lines of code in the generic header. -. Patches 29,30,33,34 convert virtio xen drivers to use the virt_xxx APIs xen patches are untested virtio ones have been tested on x86 -. Patches 31-32 teach virtio to use virt_store_mb sh architecture was missing a 2-byte smp_store_mb, the fix is trivial although my code is not optimal: if anyone cares, pls send me a patch to apply on top. I didn't build this architecture, but intel's 0-day infrastructure builds it. tes...
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...eed for build illumos ZFS +CFLAGS += -Wno-parentheses +CFLAGS += -Wno-unused +# end LDFLAGS += -L../common/ PIC_OBJS := $(patsubst %.c,%.opic,$(LIB_SRCS-y)) -FSDIR = $(LIBDIR)/fs +FSDIR-y = $(LIBDIR)/fs/$(FS) +FSDIR-$(CONFIG_SunOS)-x86_64 = $(PREFIX)/lib/fs/$(FS)/64 +FSDIR-$(CONFIG_SunOS)-x86_32 = $(PREFIX)/lib/fs/$(FS)/ +FSDIR-$(CONFIG_SunOS) = $(FSDIR-$(CONFIG_SunOS)-$(XEN_TARGET_ARCH)) +FSDIR = $(FSDIR-y) FSLIB = fsimage.so @@ -15,11 +23,14 @@ fs-all: $(FSLIB) .PHONY: fs-install fs-install: fs-all - $(INSTALL_DIR) $(DESTDIR)$(FSDIR)/$(FS) - $(INSTALL_PROG) $(FSLIB) $(DESTDIR)$(...
2014 Aug 28
14
[PATCH 00/13] code refactorings for tools
...ustomize/perl_edit-c.c | 55 ++++++++ customize/perl_edit.ml | 62 +------- edit/Makefile.am | 6 +- edit/edit.c | 368 +++--------------------------------------------- fish/Makefile.am | 2 + fish/edit.c | 125 +--------------- fish/file-edit.c | 325 ++++++++++++++++++++++++++++++++++++++++++ fish/file-edit.h | 47 +++++++ fish/windows.c | 135 ++++++++++++++++++ fish/windows.h | 45 ++++++ po/POTFILES | 3 + sysprep/Makefile.am | 2 + v2v/Makefile.am | 2 + 17 files changed, 663 insert...
2007 Jan 16
0
9 commits - libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_audio_stream.c libswfdec/swfdec_audio_stream.h libswfdec/swfdec_cache.c libswfdec/swfdec_cached.c libswfdec/swfdec_cached.h libswfdec/swfdec_edittext_movie.c libswfdec/swfdec_image.c
...fdec/swfdec_cache.c | 11 + libswfdec/swfdec_cached.c | 123 ++++++++++++++++++++++ libswfdec/swfdec_cached.h | 65 +++++++++++ libswfdec/swfdec_edittext_movie.c | 44 +++---- libswfdec/swfdec_image.c | 65 ++++------- libswfdec/swfdec_image.h | 32 ++--- libswfdec/swfdec_js.c | 41 +------ libswfdec/swfdec_js.h | 7 - libswfdec/swfdec_js_color.c | 2 libswfdec/swfdec_js_movie.c | 159 ++++++---------------------- libswfdec/swfdec_movie.c | 33 +++++ libswfdec/swfdec_movie.h |...