search for: 877,10

Displaying 10 results from an estimated 10 matches for "877,10".

Did you mean: 870,10
2011 Mar 10
1
[PATCH 13/21] [PATCH 13/21] Staging: hv: Rename vmbus_driver_context structure
...elongs to this bus */ - child_device_obj->device.bus = &vmbus_drv.bus; /* device->dev.bus; */ + child_device_obj->device.bus = &hv_bus.bus; /* device->dev.bus; */ child_device_obj->device.parent = root_dev; child_device_obj->device.release = vmbus_device_release; @@ -877,10 +873,10 @@ static irqreturn_t vmbus_isr(int irq, void *dev_id) /* Schedules a dpc if necessary */ if (ret > 0) { if (test_bit(0, (unsigned long *)&ret)) - tasklet_schedule(&vmbus_drv.msg_dpc); + tasklet_schedule(&hv_bus.msg_dpc); if (test_bit(1, (unsigned long *)&a...
2011 Mar 10
1
[PATCH 13/21] [PATCH 13/21] Staging: hv: Rename vmbus_driver_context structure
...elongs to this bus */ - child_device_obj->device.bus = &vmbus_drv.bus; /* device->dev.bus; */ + child_device_obj->device.bus = &hv_bus.bus; /* device->dev.bus; */ child_device_obj->device.parent = root_dev; child_device_obj->device.release = vmbus_device_release; @@ -877,10 +873,10 @@ static irqreturn_t vmbus_isr(int irq, void *dev_id) /* Schedules a dpc if necessary */ if (ret > 0) { if (test_bit(0, (unsigned long *)&ret)) - tasklet_schedule(&vmbus_drv.msg_dpc); + tasklet_schedule(&hv_bus.msg_dpc); if (test_bit(1, (unsigned long *)&a...
2007 Aug 20
3
[PATCH 2/4] Introduce a new fields "gtime" and "cgtime" in task_struct and signal_struct
...3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- kvm.orig/kernel/fork.c 2007-08-20 11:11:30.000000000 +0200 +++ kvm/kernel/fork.c 2007-08-20 12:38:55.000000000 +0200 @@ -877,6 +877,10 @@ static inline int copy_signal(unsigned l sig->tty_old_pgrp =3D NULL; = sig->utime =3D sig->stime =3D sig->cutime =3D sig->cstime =3D cputime_zer= o; +#ifdef CONFIG_GUEST_ACCOUNTING + sig->gtime =3D cputime_zero; + sig->cgtime =3D cputime_zero; +#endif sig-&...
2007 Aug 20
3
[PATCH 2/4] Introduce a new fields "gtime" and "cgtime" in task_struct and signal_struct
...3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- kvm.orig/kernel/fork.c 2007-08-20 11:11:30.000000000 +0200 +++ kvm/kernel/fork.c 2007-08-20 12:38:55.000000000 +0200 @@ -877,6 +877,10 @@ static inline int copy_signal(unsigned l sig->tty_old_pgrp =3D NULL; = sig->utime =3D sig->stime =3D sig->cutime =3D sig->cstime =3D cputime_zer= o; +#ifdef CONFIG_GUEST_ACCOUNTING + sig->gtime =3D cputime_zero; + sig->cgtime =3D cputime_zero; +#endif sig-&...
2002 Feb 02
0
Version two of progressbar for scp/sftp
...r_free(&msg); xfree(handle); + statbytes = 0; + totalbytes = 0; + curfile = NULL; + return status; } int do_upload(int fd_in, int fd_out, char *local_path, char *remote_path, - int pflag) + int pflag, void (*progressbar)(int)) { int local_fd; u_int handle_len, id; @@ -860,6 +877,10 @@ buffer_free(&msg); return(-1); } + totalbytes = a.size; + curfile = local_path; + if (progressbar) + (progressbar)(0); /* Read from local and write to remote */ offset = 0; @@ -903,6 +924,7 @@ (unsigned long long)offset); offset += len; + statbytes = offset;...
2011 Feb 22
4
[PATCH 1/6] Staging: hv: vmbus_drv.c Replaced DPRINT with native pr_XXX
...vice_ctx->class_id.data[13], - device_ctx->class_id.data[14], - device_ctx->class_id.data[15]); - ret = add_uevent_var(env, "VMBUS_DEVICE_CLASS_GUID={" "%02x%02x%02x%02x-%02x%02x-%02x%02x-" "%02x%02x%02x%02x%02x%02x%02x%02x}", @@ -877,10 +817,6 @@ static int vmbus_match(struct device *device, struct device_driver *driver) (struct vmbus_driver_context *)driver_ctx; device_ctx->device_obj.drv = &vmbus_drv_ctx->drv_obj; - DPRINT_INFO(VMBUS_DRV, - "device object (%p) set to driver object (%p)", -...
2011 Feb 22
4
[PATCH 1/6] Staging: hv: vmbus_drv.c Replaced DPRINT with native pr_XXX
...vice_ctx->class_id.data[13], - device_ctx->class_id.data[14], - device_ctx->class_id.data[15]); - ret = add_uevent_var(env, "VMBUS_DEVICE_CLASS_GUID={" "%02x%02x%02x%02x-%02x%02x-%02x%02x-" "%02x%02x%02x%02x%02x%02x%02x%02x}", @@ -877,10 +817,6 @@ static int vmbus_match(struct device *device, struct device_driver *driver) (struct vmbus_driver_context *)driver_ctx; device_ctx->device_obj.drv = &vmbus_drv_ctx->drv_obj; - DPRINT_INFO(VMBUS_DRV, - "device object (%p) set to driver object (%p)", -...
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...n_test (t, filenames[i])) + fail.push (filenames[i]); +}; +if (fail.length > 0) { + error (fail.join ("\n ")); + throw (fail.length + " failures"); +} diff --git a/test/custom/button-hittest.sts b/test/custom/button-hittest.sts new file mode 100644 index 0000000..378773f Binary files /dev/null and b/test/custom/button-hittest.sts differ diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index 84a7c48..a706bd0 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -315,19 +315,6 @@ EXTRA_DIST = \ boolean-properties-7.swf.trace \ boolean-...