search for: 582,13

Displaying 7 results from an estimated 7 matches for "582,13".

Did you mean: 552,13
2014 Feb 10
0
Patch for bestfcom driver
...extra whitespace in the model ID. diff -rupN release-orig/nut-2.7.1/drivers/bestfcom.c release-patched/nut-2.7.1/drivers/bestfcom.c --- release-orig/nut-2.7.1/drivers/bestfcom.c 2013-07-31 13:41:31.000000000 -0700 +++ release-patched/nut-2.7.1/drivers/bestfcom.c 2014-02-10 10:22:35.405305828 -0800 @@ -582,6 +582,13 @@ void upsdrv_init_nofc(void) fc.type = FERRUPS; snprintf(fc.name, sizeof(fc.name), "%s", "Ferrups"); } else + /* For FE2.1KVA running 9.28 firmware and possibly older */ + if (strstr(rstring, "M...
2014 Feb 10
0
BestPower Ferrups driver glitch with f commands
...what was there. Here is the patch: diff -rupN release-orig/nut-2.7.1/drivers/bestfcom.c release-patched/nut-2.7.1/drivers/bestfcom.c --- release-orig/nut-2.7.1/drivers/bestfcom.c 2013-07-31 13:41:31.000000000 -0700 +++ release-patched/nut-2.7.1/drivers/bestfcom.c 2014-02-10 10:22:35.405305828 -0800 @@ -582,6 +582,13 @@ void upsdrv_init_nofc(void) fc.type = FERRUPS; snprintf(fc.name, sizeof(fc.name), "%s", "Ferrups"); } else + /* For FE2.1KVA running 9.28 firmware */ + if (strstr(rstring, "Model: FE2.1KVA...
2014 Feb 10
2
BestPower Ferrups driver glitch with f commands
I did the testing you suggested, and it was indeed the whitespace. I added another if clause test to the function and everything seems to work. I have working driver that I will email a patch for this list. My coworker says the model ID is configurable though, so we will try that first, which would negate the need to patch the driver. ________________________________________ From: Charles Lepple
2007 May 22
0
Branch 'as' - 9 commits - libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_native_function.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_script_function.c
...6dd5ae4ff3aaee9fe7c (from 9027b5e811c294d2804cb6723a1d4be315b16cfb) Author: Benjamin Otte <otte at gnome.org> Date: Tue May 22 11:44:28 2007 +0200 add tests for CallMethod with undefined or empty function name diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index e101ba5..582c598 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -20,6 +20,13 @@ EXTRA_DIST = \ callfunction-stack.as \ callfunction-stack.swf \ callfunction-stack.swf.trace \ + callmethod-undefined-this-5.swf \ + callmethod-undefined-this-5.swf.trace \ + callmethod-undefined-this-6.sw...
2008 Mar 20
0
[RFC/PATCH 07/15] kvm-s390: interrupt subsystem, cpu timer, waitpsw
...w.mask = kvm_run->s390_sieic.mask; @@ -414,8 +451,8 @@ int kvm_arch_vcpu_ioctl_run(struct kvm_v might_sleep(); do { + kvm_s390_deliver_pending_interrupts(vcpu); __vcpu_run(vcpu); - rc = kvm_handle_sie_intercept(vcpu); } while (!signal_pending(current) && !rc); @@ -545,6 +582,13 @@ long kvm_arch_vcpu_ioctl(struct file *fi void __user *argp = (void __user *)arg; switch (ioctl) { + case KVM_S390_INTERRUPT: { + struct kvm_s390_interrupt s390int; + + if (copy_from_user(&s390int, argp, sizeof(s390int))) + return -EFAULT; + return kvm_s390_inject_vcpu(vcpu, &am...
2008 Mar 20
34
[RFC/PATCH 00/15] kvm on big iron
This patch series introduces a backend for kvm to run on IBM System z machines that uses the mainframe's sie virtualization capability. This work runs 64bit guests on z800/z890/z900/z990/z9/z10 class machines with a 64bit linux host. Userspace will follow once we're done brushing it over. The patch queue consists of the following patches, which can be applied in sequence on top of kvm.git
2008 Mar 20
34
[RFC/PATCH 00/15] kvm on big iron
This patch series introduces a backend for kvm to run on IBM System z machines that uses the mainframe's sie virtualization capability. This work runs 64bit guests on z800/z890/z900/z990/z9/z10 class machines with a 64bit linux host. Userspace will follow once we're done brushing it over. The patch queue consists of the following patches, which can be applied in sequence on top of kvm.git