search for: 45,16

Displaying 20 results from an estimated 43 matches for "45,16".

Did you mean: 41,16
2000 Jan 19
1
Potentially serious (but rare) issue with buffer.c and cipher.c
...t. Bernard -------------- next part -------------- Index: cipher.c =================================================================== RCS file: /usr/local/cvs/openssh/cipher.c,v retrieving revision 1.7 diff -u -r1.7 cipher.c --- cipher.c 2000/01/17 17:27:31 1.7 +++ cipher.c 2000/01/19 07:18:49 @@ -45,16 +45,16 @@ { des_cblock iv1; - memcpy(&iv1, iv2, 8); + memmove(&iv1, iv2, 8); des_cbc_encrypt(src, dest, len, ks1, &iv1, DES_ENCRYPT); - memcpy(&iv1, (char *)dest + len - 8, 8); + memmove(&iv1, (char *)dest + len - 8, 8); des_cbc_encrypt(dest, dest, len, ks2, iv2,...
2019 Oct 24
2
[PATCH V5 1/6] mdev: class id support
...0; > >> } > >> > >> diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > >> index b558d4cfd082..3a9c52d71b4e 100644 > >> --- a/drivers/vfio/mdev/mdev_core.c > >> +++ b/drivers/vfio/mdev/mdev_core.c > >> @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > >> } > >> EXPORT_SYMBOL(mdev_set_drvdata); > >> > >> +/* Specify the class for the mdev device, this must be called during > >> + * create() callback. > >> + */ &gt...
2019 Oct 24
2
[PATCH V5 1/6] mdev: class id support
...0; > >> } > >> > >> diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > >> index b558d4cfd082..3a9c52d71b4e 100644 > >> --- a/drivers/vfio/mdev/mdev_core.c > >> +++ b/drivers/vfio/mdev/mdev_core.c > >> @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > >> } > >> EXPORT_SYMBOL(mdev_set_drvdata); > >> > >> +/* Specify the class for the mdev device, this must be called during > >> + * create() callback. > >> + */ &gt...
2019 Nov 04
1
[PATCH V7 1/6] mdev: class id support
...> + mdev_set_class(mdev, MDEV_CLASS_ID_VFIO); > return 0; > } > > diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > index b558d4cfd082..d23ca39e3be6 100644 > --- a/drivers/vfio/mdev/mdev_core.c > +++ b/drivers/vfio/mdev/mdev_core.c > @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > } > EXPORT_SYMBOL(mdev_set_drvdata); > > +/* Specify the class for the mdev device, this must be called during > + * create() callback. > + */ Standard non-networking multi-line comment style please, ie...
2014 Nov 26
0
[PATCH] Some last copyright year updates and change to open bug list
...| 4 ++-- src/flac/main.c | 2 +- 4 files changed, 5 insertions(+), 12 deletions(-) diff --git a/doc/html/documentation_bugs.html b/doc/html/documentation_bugs.html index ad0daa1..3420b9a 100644 --- a/doc/html/documentation_bugs.html +++ b/doc/html/documentation_bugs.html @@ -45,16 +45,9 @@ The following are major known bugs in the current (1.3.1pre1) release: <ul> <li> - If you use the --replay-gain option with flac, but no --padding/-P option, only a very small padding block will be created. The workaround is to always use a -P option when using...
2019 Oct 23
2
[PATCH V5 1/6] mdev: class id support
...> + mdev_set_class(mdev, MDEV_CLASS_ID_VFIO); > return 0; > } > > diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > index b558d4cfd082..3a9c52d71b4e 100644 > --- a/drivers/vfio/mdev/mdev_core.c > +++ b/drivers/vfio/mdev/mdev_core.c > @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > } > EXPORT_SYMBOL(mdev_set_drvdata); > > +/* Specify the class for the mdev device, this must be called during > + * create() callback. > + */ > +void mdev_set_class(struct mdev_device *mdev, u16 id)...
2019 Oct 23
2
[PATCH V5 1/6] mdev: class id support
...> + mdev_set_class(mdev, MDEV_CLASS_ID_VFIO); > return 0; > } > > diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > index b558d4cfd082..3a9c52d71b4e 100644 > --- a/drivers/vfio/mdev/mdev_core.c > +++ b/drivers/vfio/mdev/mdev_core.c > @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > } > EXPORT_SYMBOL(mdev_set_drvdata); > > +/* Specify the class for the mdev device, this must be called during > + * create() callback. > + */ > +void mdev_set_class(struct mdev_device *mdev, u16 id)...
2020 Jul 21
0
[PATCH v9 58/84] KVM: introspection: add KVMI_VCPU_GET_CPUID
...ospected yet +* -KVM_ENOENT - the selected leaf is not present or is invalid + Events ====== diff --git a/arch/x86/include/uapi/asm/kvmi.h b/arch/x86/include/uapi/asm/kvmi.h index f14674c3c109..57c48ace417f 100644 --- a/arch/x86/include/uapi/asm/kvmi.h +++ b/arch/x86/include/uapi/asm/kvmi.h @@ -45,4 +45,16 @@ struct kvmi_vcpu_get_registers_reply { struct kvm_msrs msrs; }; +struct kvmi_vcpu_get_cpuid { + __u32 function; + __u32 index; +}; + +struct kvmi_vcpu_get_cpuid_reply { + __u32 eax; + __u32 ebx; + __u32 ecx; + __u32 edx; +}; + #endif /* _UAPI_ASM_X86_KVMI_H */ diff --git a/arch/x8...
2020 Feb 07
0
[RFC PATCH v7 41/78] KVM: introspection: add KVMI_VM_CHECK_COMMAND and KVMI_VM_CHECK_EVENT
...ux/kvmi.h index ee817cb05cc6..ba550e9fae2e 100644 --- a/include/uapi/linux/kvmi.h +++ b/include/uapi/linux/kvmi.h @@ -14,7 +14,9 @@ enum { }; enum { - KVMI_GET_VERSION = 2, + KVMI_GET_VERSION = 2, + KVMI_VM_CHECK_COMMAND = 3, + KVMI_VM_CHECK_EVENT = 4, KVMI_NUM_MESSAGES }; @@ -43,4 +45,16 @@ struct kvmi_get_version_reply { __u32 padding; }; +struct kvmi_vm_check_command { + __u16 id; + __u16 padding1; + __u32 padding2; +}; + +struct kvmi_vm_check_event { + __u16 id; + __u16 padding1; + __u32 padding2; +}; + #endif /* _UAPI__LINUX_KVMI_H */ diff --git a/tools/testing/selftes...
2019 Oct 24
0
[PATCH V5 1/6] mdev: class id support
...; >> > > >> diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c > > >> index b558d4cfd082..3a9c52d71b4e 100644 > > >> --- a/drivers/vfio/mdev/mdev_core.c > > >> +++ b/drivers/vfio/mdev/mdev_core.c > > >> @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) > > >> } > > >> EXPORT_SYMBOL(mdev_set_drvdata); > > >> > > >> +/* Specify the class for the mdev device, this must be called during > > >> + * create() callbac...
2019 Nov 04
0
[PATCH V7 1/6] mdev: class id support
...t); mutex_unlock(&matrix_dev->lock); + mdev_set_class(mdev, MDEV_CLASS_ID_VFIO); return 0; } diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c index b558d4cfd082..d23ca39e3be6 100644 --- a/drivers/vfio/mdev/mdev_core.c +++ b/drivers/vfio/mdev/mdev_core.c @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) } EXPORT_SYMBOL(mdev_set_drvdata); +/* Specify the class for the mdev device, this must be called during + * create() callback. + */ +void mdev_set_class(struct mdev_device *mdev, u16 id) +{ + WARN_ON(mdev->class_id); +...
2019 Oct 23
0
[PATCH V5 1/6] mdev: class id support
...t); mutex_unlock(&matrix_dev->lock); + mdev_set_class(mdev, MDEV_CLASS_ID_VFIO); return 0; } diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c index b558d4cfd082..3a9c52d71b4e 100644 --- a/drivers/vfio/mdev/mdev_core.c +++ b/drivers/vfio/mdev/mdev_core.c @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) } EXPORT_SYMBOL(mdev_set_drvdata); +/* Specify the class for the mdev device, this must be called during + * create() callback. + */ +void mdev_set_class(struct mdev_device *mdev, u16 id) +{ + WARN_ON(mdev->class_id); +...
2019 Oct 24
0
[PATCH V5 1/6] mdev: class id support
..._CLASS_ID_VFIO); >> return 0; >> } >> >> diff --git a/drivers/vfio/mdev/mdev_core.c b/drivers/vfio/mdev/mdev_core.c >> index b558d4cfd082..3a9c52d71b4e 100644 >> --- a/drivers/vfio/mdev/mdev_core.c >> +++ b/drivers/vfio/mdev/mdev_core.c >> @@ -45,6 +45,16 @@ void mdev_set_drvdata(struct mdev_device *mdev, void *data) >> } >> EXPORT_SYMBOL(mdev_set_drvdata); >> >> +/* Specify the class for the mdev device, this must be called during >> + * create() callback. >> + */ >> +void mdev_set_class(str...
2005 Sep 18
0
Updated rawConnection() patch
..."integer", endian="swap")) +readBin(zz, "numeric", n=1, size=4) +close(zz) +} +\keyword{file} +\keyword{connection} --- ./src/library/base/man/textconnections.Rd.orig 2005-09-03 13:55:48.274305900 -0700 +++ ./src/library/base/man/textconnections.Rd 2005-09-18 11:37:03.457530300 -0700 @@ -45,16 +45,11 @@ } \value{ - A connection object of class \code{"textConnection"} which inherits - from class \code{"connection"}. + A text-mode connection object of class \code{"textConnection"} which + inherits from class \code{"connectio...
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...updateHostChart); + bar.addEventListener(MouseEvent.CLICK, + selectClickedBar); + bar.x = currentBarPosition; if (makeup > 0 && i % makeup == 0 && madeup < shortfall) { bar.width = bar.width + 1; @@ -295,14 +345,15 @@ package org.ovirt.charts { //add a 'tick' in the center of the bar to which this label //corresponds var ind:Box = new Box(); - ind.opaqueBackground = 0x000000; - ind.width=1; - ind.height=3; + ind.widt...
2008 Sep 26
2
RE: [Xen-changelog] [xen-unstable] x86: Properly synchronise updates to pirq-to-vector mapping.
...i.h | 2 xen/include/xen/irq.h | 3 - 11 files changed, 142 insertions(+), 111 deletions(-) diff -r 7750906b06b3 -r 31f09a5e24cf xen/arch/ia64/xen/irq.c --- a/xen/arch/ia64/xen/irq.c Wed Sep 24 10:23:51 2008 +0100 +++ b/xen/arch/ia64/xen/irq.c Wed Sep 24 12:36:55 2008 +0100 @@ -459,20 +459,24 @@ int pirq_guest_bind(struct vcpu *v, int return rc; } -void pirq_guest_unbind(struct domain *d, int irq) +int pirq_guest_unbind(struct domain *d, int irq) { irq_desc_t *desc = &irq_desc[irq]; irq_guest_action_t *action; unsigned long flags; -...
2002 Nov 11
0
Regular Expression support
...t exclude_struct **exclude_list; /* build an exclude structure given a exclude pattern */ -static struct exclude_struct *make_exclude(const char *pattern, int include) +static struct exclude_struct *make_exclude(const char *pattern, int include, int regexp) { struct exclude_struct *ret; @@ -45,16 +45,25 @@ } else if (strncmp(pattern,"+ ",2) == 0) { ret->include = 1; pattern += 2; + } else if (strncmp(pattern,"-R ",3) == 0) { + pattern += 3; + ret->use_real_regexp = 1; + } else if (strncmp(pattern,"+R ",3) == 0) { + ret->incl...
2007 Aug 14
0
Branch 'vivi' - 11 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h vivified/core
...fied/core/vivi_breakpoint.h | 55 +++++++++++++++ vivified/core/vivi_debugger.c | 103 ++++++++++++++++++++++++++++ vivified/core/vivi_debugger.h | 55 +++++++++++++++ vivified/core/vivi_function.c | 9 ++ vivified/core/vivi_initialize.as | 5 + 15 files changed, 452 insertions(+), 10 deletions(-) New commits: diff-tree adc7c2987283fe1ec7df8aa442d6d11b6d8d762a (from c1e028a0e58fb2821ce1d10898aca11fbc3c19a0) Author: Benjamin Otte <otte at gnome.org> Date: Tue Aug 14 20:29:22 2007 +0200 remove debugging g_print's diff --git a/vivified/core/viv...
2008 May 23
6
[PATCH 0 of 4] mm+paravirt+xen: add pte read-modify-write abstraction
Hi all, This little series adds a new transaction-like abstraction for doing RMW updates to a pte, hooks it into paravirt_ops, and then makes use of it in Xen. The basic problem is that mprotect is very slow under Xen (up to 50x slower than native), primarily because of the ptent = ptep_get_and_clear(mm, addr, pte); ptent = pte_modify(ptent, newprot); /* ... */ set_pte_at(mm, addr, pte,
2008 May 23
6
[PATCH 0 of 4] mm+paravirt+xen: add pte read-modify-write abstraction
Hi all, This little series adds a new transaction-like abstraction for doing RMW updates to a pte, hooks it into paravirt_ops, and then makes use of it in Xen. The basic problem is that mprotect is very slow under Xen (up to 50x slower than native), primarily because of the ptent = ptep_get_and_clear(mm, addr, pte); ptent = pte_modify(ptent, newprot); /* ... */ set_pte_at(mm, addr, pte,