Displaying 20 results from an estimated 29 matches for "inat".
Did you mean:
ina
2004 Nov 29
2
Interesting oopses...
...disc del dev $IFIN root 2> /dev/null > /dev/null
$TC qdisc del dev $IFOUT root 2> /dev/null > /dev/null
# Clear old iptables...
echo "Clearing old iptables..."
$IPT -t mangle -F POSTROUTING
$IPT -t mangle -F NATI
$IPT -t mangle -X NATI
$IPT -t mangle -N NATI
$IPT -t mangle -F INAT
$IPT -t mangle -X INAT
$IPT -t mangle -N INAT
# Match local traffic
$IPT -t mangle -A POSTROUTING -s 10.0.0.0/8 -d 10.0.0.0/8 -j CLASSIFY
--set-class 1:1
$IPT -t mangle -A POSTROUTING -s 10.0.0.0/8 -d 10.0.0.0/8 -j ACCEPT
# Classify local / international traffic
$IPT -t mangle -A POSTROUTING -s 1...
2020 Apr 16
0
[PATCH 05/70] x86/insn: Make inat-tables.c suitable for pre-decompression code
...e:
> On Wed, 25 Mar 2020 16:39:45 +0100
> Borislav Petkov <bp at alien8.de> wrote:
>
> > + Masami.
> >
> > On Thu, Mar 19, 2020 at 10:13:02AM +0100, Joerg Roedel wrote:
> > > From: Joerg Roedel <jroedel at suse.de>
> > >
> > > The inat-tables.c file has some arrays in it that contain pointers to
> > > other arrays. These pointers need to be relocated when the kernel
> > > image is moved to a different location.
> > >
> > > The pre-decompression boot-code has no support for applying ELF
> &g...
2020 Apr 17
0
[PATCH 05/70] x86/insn: Make inat-tables.c suitable for pre-decompression code
On Fri, Apr 17, 2020 at 09:50:00PM +0900, Masami Hiramatsu wrote:
> On Thu, 16 Apr 2020 17:24:06 +0200
> Joerg Roedel <joro at 8bytes.org> wrote:
> Ah, I got it. So you intended to port the instruction decoder to
> pre-decompression boot code, correct?
Right, it is needed there to decode instructions which cause #VC
exceptions when running as an SEV-ES guest.
> > The
2020 May 12
2
[PATCH v3 23/75] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
...le
> +++ b/arch/x86/boot/compressed/Makefile
> @@ -41,6 +41,9 @@ KBUILD_CFLAGS += -Wno-pointer-sign
> KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
> KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
>
> +# sev-es.c inludes generated $(objtree)/arch/x86/lib/inat-tables.c
"includes"
> +CFLAGS_sev-es.o += -I$(objtree)/arch/x86/lib/
Does it?
I see
#include "../../lib/inat.c"
#include "../../lib/insn.c"
only and with the above CFLAGS-line removed, it builds still.
Leftover from earlier?
> +
> KBUILD_AFLAGS...
2020 May 12
2
[PATCH v3 23/75] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
...le
> +++ b/arch/x86/boot/compressed/Makefile
> @@ -41,6 +41,9 @@ KBUILD_CFLAGS += -Wno-pointer-sign
> KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
> KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
>
> +# sev-es.c inludes generated $(objtree)/arch/x86/lib/inat-tables.c
"includes"
> +CFLAGS_sev-es.o += -I$(objtree)/arch/x86/lib/
Does it?
I see
#include "../../lib/inat.c"
#include "../../lib/insn.c"
only and with the above CFLAGS-line removed, it builds still.
Leftover from earlier?
> +
> KBUILD_AFLAGS...
2020 May 12
0
[PATCH v3 23/75] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
On Tue, May 12, 2020 at 08:11:57PM +0200, Borislav Petkov wrote:
> > +# sev-es.c inludes generated $(objtree)/arch/x86/lib/inat-tables.c
>
> "includes"
>
> > +CFLAGS_sev-es.o += -I$(objtree)/arch/x86/lib/
>
> Does it?
>
> I see
>
> #include "../../lib/inat.c"
> #include "../../lib/insn.c"
>
> only and with the above CFLAGS-line removed, it...
2020 Sep 22
1
AMI vs. Dialplan Originate
On Tuesday 22 September 2020 at 13:27:27, Joshua C. Colp wrote:
> On Tue, Sep 22, 2020 at 7:37 AM Antony Stone wrote:
> > Hi.
> >
> > (Asterisk 16.2.1)
> >
> > I'm using AMI Originate to initiate calls, and I'm passing some
> > additional data in to the dialplan context using the Variable:
> > parameter. Works fine.
> >
> > https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_Orig
> > inate
> >
> > Now I need to d...
2020 Feb 11
1
[PATCH 19/62] x86/sev-es: Add support for handling IOIO exceptions
On Tue, Feb 11, 2020 at 5:53 AM Joerg Roedel <joro at 8bytes.org> wrote:
>
> From: Tom Lendacky <thomas.lendacky at amd.com>
>
> Add support for decoding and handling #VC exceptions for IOIO events.
>
> Signed-off-by: Tom Lendacky <thomas.lendacky at amd.com>
> [ jroedel at suse.de: Adapted code to #VC handling framework ]
> Co-developed-by: Joerg Roedel
2020 Apr 28
0
[PATCH v3 23/75] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
...rch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -41,6 +41,9 @@ KBUILD_CFLAGS += -Wno-pointer-sign
KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
+# sev-es.c inludes generated $(objtree)/arch/x86/lib/inat-tables.c
+CFLAGS_sev-es.o += -I$(objtree)/arch/x86/lib/
+
KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
GCOV_PROFILE := n
UBSAN_SANITIZE :=n
diff --git a/arch/x86/boot/compressed/idt_64.c b/arch/x86/boot/compressed/idt_64.c
index f8295d68b3e1..44d20c4f47c9 100644
--- a/arch/x86/boot/compress...
2020 Sep 22
2
AMI vs. Dialplan Originate
Hi.
(Asterisk 16.2.1)
I'm using AMI Originate to initiate calls, and I'm passing some additional
data in to the dialplan context using the Variable: parameter. Works fine.
https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerAction_Originate
Now I need to do the same thing but from another context in my dialplan, so I
was ex...
1998 Sep 14
4
Problems installing Samba
HI 2 ALL,
I am a 22 year old student from Holland. I'm trying to implement a
HP3000 to a LAN(Windows 4 Workgroups 3.11). I Have 3 questions for the
experts:
- Can anyone tell me how I can name my HP3000 machine 'BIGSERVER'
(when I try to PING BIGSERVER, ping does'nt recognize it)
- When I try to start SMBD, I receive the following message:
SAMBA: PROPER TZ RECOMMENDED
-
2012 Jun 03
2
merging single column from different dataframe
Hi all,
probably really simple to solve, but having no background in programming I
haven't been able to figure this out: I have two dataframes like
df1 <- data.frame(names1=c('aa','ab', 'ac', 'ad'), var1=c(1,5,7,12))
df2 <- data.frame(names2=c('aa', 'ab', 'ac', 'ad', 'ae'),
var2=c(3,6,9,12,15))
Now I want merge
2015 Aug 23
28
[Bug 91738] New: xf86-video-nouveau 1.0.11 will not allow X to start
https://bugs.freedesktop.org/show_bug.cgi?id=91738
Bug ID: 91738
Summary: xf86-video-nouveau 1.0.11 will not allow X to start
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: major
Priority: medium
Component: Driver/nouveau
2020 Feb 11
0
[PATCH 18/62] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
...es_em_ctxt *ctxt,
+ void *src, char *buf, size_t size)
+{
+ memcpy(buf, src, size);
+
+ return ES_OK;
+}
+
#undef __init
+#undef __pa
#define __init
+#define __pa(x) ((unsigned long)(x))
+
+#define __BOOT_COMPRESSED
+
+/* Basic instruction decoding support needed */
+#include "../../lib/inat.c"
+#include "../../lib/insn.c"
/* Include code for early handlers */
#include "../../kernel/sev-es-shared.c"
+
+static bool setup_ghcb(void)
+{
+ if (!sev_es_negotiate_protocol())
+ terminate(GHCB_SEV_ES_REASON_PROTOCOL_UNSUPPORTED);
+
+ if (set_page_decrypted((unsign...
2018 Oct 01
0
tada ... the Z of Jericho 多 & i ... the Ro' Chosein 大
...YUgFAwBSVk9RU1UdU1wDX1cNVg>
It probably goes without saying, but just in case you weren't sure the
information that I'm beginning to send to a much larger audience has been
seen by millions of people--around the world professors at universities,
the press and clergy of nearly every denomination of church you can
imagine. I wouldn't say it's been "poorly received" it's very easy to tell
from readership statistics that "people are talking about it" though it
gave /new personal meaning to songs like the Sound of Silence
<http://amhi.cf/lists/lt.php?id=YU...
2002 Dec 21
0
Re: samba digest, Vol 1 #2006 - 24 msgs (Out of the office - Returning Monday, Jan. 6th)
...om: Viktor Pirard <viktor.pirard@telia.com>
To: samba@lists.samba.org
Subject: [Samba] Problems installing samba
Hi, i'm having som problems installing samba2.2.7a on rootlinux 1.2.
Configure says
checking configure summary... WARNING: No automated network interface
determ ination
ERROR: no seteuid method available
configure: error: summary failure. Aborting config
Any ideas? Thankful for any help.
--__--__--
Message: 14
From: "Windsor Dave (AdW/MOE2.1)" <Dave.Windsor@us.bosch.com>
To: "'John H Terpstra'" <jht@samba.org>
Cc: &qu...
2020 Jul 24
86
[PATCH v5 00/75] x86: SEV-ES Guest Support
...ew.
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 <asm/trap_pf.h>
x86/insn: Make inat-tables.c suitable for pre-decompression code
x86/umip: Factor out instruction fetch
x86/umip: Factor out instruction decoding
x86/insn: Add insn_get_modrm_reg_off()
x86/insn: Add insn_has_rep_prefix() helper
x86/boot/compressed/64: Disable red-zone usage
x86/boot/compressed/64: Add IDT...
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
...ew.
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 <asm/trap_pf.h>
x86/insn: Make inat-tables.c suitable for pre-decompression code
x86/umip: Factor out instruction fetch
x86/umip: Factor out instruction decoding
x86/insn: Add insn_get_modrm_reg_off()
x86/insn: Add insn_has_rep_prefix() helper
x86/boot/compressed/64: Disable red-zone usage
x86/boot/compressed/64: Add IDT...
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
...ew.
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 <asm/trap_pf.h>
x86/insn: Make inat-tables.c suitable for pre-decompression code
x86/umip: Factor out instruction fetch
x86/umip: Factor out instruction decoding
x86/insn: Add insn_get_modrm_reg_off()
x86/insn: Add insn_has_rep_prefix() helper
x86/boot/compressed/64: Disable red-zone usage
x86/boot/compressed/64: Add IDT...
2020 Apr 28
116
[PATCH v3 00/75] x86: SEV-ES Guest Support
...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 some definitions to <asm/trap_defs.h>
x86/insn: Make inat-tables.c suitable for pre-decompression code
x86/umip: Factor out instruction fetch
x86/umip: Factor out instruction decoding
x86/insn: Add insn_get_modrm_reg_off()
x86/insn: Add insn_rep_prefix() helper
x86/boot/compressed/64: Disable red-zone usage
x86/boot/compressed/64: Switch to __...