search for: 24,35

Displaying 10 results from an estimated 10 matches for "24,35".

Did you mean: 24,31
2007 Dec 13
1
Flushing (Reset) 'last.warning'
...all. I tried to remove 'last.warning' but it won't let me (wisely?) touch the base environment. Code below. And if anyone could give some pointers it would be great. Thank you, kind list ############### collect <- vector('character', 3) vec.1 <- c(10,19); total.1 <- c(24,35) vec.2 <- c(5,12); total.2 <- c(50,211) prop.test(vec.1, total.1); collect[1] <- names(warnings()) prop.test(vec.2, total.2); collect[2] <- names(warnings()) prop.test(vec.1, total.1); collect[3] <- names(warnings()) collect [1] "" [2] "Chi-squared approximation m...
2012 Oct 04
3
[PATCH] btrfs ulist use rbtree instead
...k Lee <zimilo@code-trick.com> */ #ifndef __ULIST__ #define __ULIST__ +#include <linux/list.h> +#include <linux/rbtree.h> + /* * ulist is a generic data structure to hold a collection of unique u64 * values. The only operations it supports is adding to the list and @@ -24,35 +28,53 @@ */ #define ULIST_SIZE 16 +/* + * number of elements statically allocated inside the pool + */ +#define ULIST_NODE_POOL_SIZE 128 + struct ulist_iterator { - int i; + union { + int i; + struct rb_node *node; + } d; }; /* * element of the list */ struct ulist_node { + str...
2019 Feb 10
21
[PATCH 00/13] Patch blast of salsa wip.testme branch
...sted happy and sad paths in the code, but did not do a full test going back to 4.8 and upgrading again etc. I finished my non-documentation part of the TODO, so next thing for this for me will be looking into README.Debian and NEWS.Debian. TODO: https://salsa.debian.org/xen-team/debian-xen/issues/24 Also, there are no debian/changelog changes in here yet. Hans van Kranenburg (8): sysconfig.xencommons.in: Strip and debianize d/xen-utils-common.install: ship /etc/default/xen xen init script: rewrite xenstored start logic xen init script: move init_dom0 into xenstored start tools/xl/b...
2017 Feb 20
3
[PATCH 0/3] tests: Define common test functions.
Previously I posted a work-in-progress preview of this patch series: https://www.redhat.com/archives/libguestfs/2017-February/msg00224.html This is the finished version that updates all of the shell-script based tests. It passes 'make check', 'make check-direct' and 'make check-slow'. Rich.
2020 Jul 24
86
[PATCH v5 00/75] x86: SEV-ES Guest Support
.../asm/segment.h | 2 +- arch/x86/include/asm/setup.h | 16 +- arch/x86/include/asm/sev-es.h | 113 ++ arch/x86/include/asm/stacktrace.h | 2 + arch/x86/include/asm/svm.h | 118 +- arch/x86/include/asm/trap_pf.h | 24 + arch/x86/include/asm/trapnr.h | 1 + arch/x86/include/asm/traps.h | 20 +- arch/x86/include/asm/x86_init.h | 16 +- arch/x86/include/uapi/asm/svm.h | 11 + arch/x86/kernel/Makefile | 1 + arch/x86/kernel/cpu/amd.c...
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
...hat the #VC handler supports nesting The previous post of the patch-set can be found here: v3: https://lore.kernel.org/lkml/20200428151725.31091-1-joro at 8bytes.org/ v2: https://lore.kernel.org/lkml/20200319091407.1481-1-joro at 8bytes.org/ v1: https://lore.kernel.org/lkml/20200211135256.24617-1-joro at 8bytes.org/ Please review. Thanks, Joerg Borislav Petkov (1): KVM: SVM: Use __packed shorthand Doug Covelli (1): x86/vmware: Add VMware specific handling for VMMCALL under SEV-ES Joerg Roedel (53): KVM: SVM: Add GHCB Accessor functions x86/traps: Move pf error codes to &...
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
...hat the #VC handler supports nesting The previous post of the patch-set can be found here: v3: https://lore.kernel.org/lkml/20200428151725.31091-1-joro at 8bytes.org/ v2: https://lore.kernel.org/lkml/20200319091407.1481-1-joro at 8bytes.org/ v1: https://lore.kernel.org/lkml/20200211135256.24617-1-joro at 8bytes.org/ Please review. Thanks, Joerg Borislav Petkov (1): KVM: SVM: Use __packed shorthand Doug Covelli (1): x86/vmware: Add VMware specific handling for VMMCALL under SEV-ES Joerg Roedel (53): KVM: SVM: Add GHCB Accessor functions x86/traps: Move pf error codes to &...
2020 Aug 24
96
[PATCH v6 00/76] x86: SEV-ES Guest Support
...- Enabling CR4.FSGSBASE early on supported processors so that early #VC exceptions on APs can be handled. - Add another patch (patch 1) to fix a KVM frame-size build warning on 32bit. The previous versions can be found as a linked-list starting here: https://lore.kernel.org/lkml/20200724160336.5435-1-joro at 8bytes.org/ There you also find more detailed information about SEV-ES in general and its implications. Please review. Thanks, Joerg Borislav Petkov (1): KVM: SVM: Use __packed shorthand Doug Covelli (1): x86/vmware: Add VMware specific handling for VMMCALL under SEV...
2020 Sep 07
84
[PATCH v7 00/72] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de> Hi, here is a new version of the SEV-ES Guest Support patches for x86. The previous versions can be found as a linked list starting here: https://lore.kernel.org/lkml/20200824085511.7553-1-joro at 8bytes.org/ I updated the patch-set based on ther review comments I got and the discussions around it. Another important change is that the early IDT setup code is now completly moved to arch/x86/kernel/head64.c. This makes the whole early exception handling setup code more r...
2020 Sep 07
84
[PATCH v7 00/72] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de> Hi, here is a new version of the SEV-ES Guest Support patches for x86. The previous versions can be found as a linked list starting here: https://lore.kernel.org/lkml/20200824085511.7553-1-joro at 8bytes.org/ I updated the patch-set based on ther review comments I got and the discussions around it. Another important change is that the early IDT setup code is now completly moved to arch/x86/kernel/head64.c. This makes the whole early exception handling setup code more r...