Displaying 20 results from an estimated 22 matches for "eregs".
Did you mean:
regs
2020 Aug 31
1
[PATCH v6 48/76] x86/entry/64: Add entry code for #VC handler
...ack (VC2) and call a special handler function.
> + *
> + * The macro is only used for one vector, but it is planned to extend it in the
^^^^^^^^^^^
"... to be extended..."
...
> @@ -674,6 +675,56 @@ asmlinkage __visible noinstr struct pt_regs *sync_regs(struct pt_regs *eregs)
> return regs;
> }
>
> +#ifdef CONFIG_AMD_MEM_ENCRYPT
> +asmlinkage __visible noinstr struct pt_regs *vc_switch_off_ist(struct pt_regs *eregs)
> +{
> + unsigned long sp, *stack;
> + struct stack_info info;
> + struct pt_regs *regs;
Let's call those "regs_r...
2006 Jun 21
3
png() or jpeg() in a php script
Hello,
I've got a problem with a PHP script, in which I call the system function
(to call another processes). The call is :
system("R --slave --vanilla < path/to/source/source.R");
if in this R file, I've got the lines:
pdf(file="/path/to/file/file.pdf")
commands
dev.off()
the pdf file is perfectly created
but if I change the lines to:
2013 Nov 20
0
[PATCH -tip v3 13/23] x86/trap: Use NOKPROBE_SYMBOL macro in trap.c
...gs *regs, long error_co
exit:
exception_exit(prev_state);
}
+NOKPROBE_SYMBOL(do_int3);
#ifdef CONFIG_X86_64
/*
@@ -361,7 +364,7 @@ exit:
* for scheduling or signal handling. The actual stack switch is done in
* entry.S
*/
-asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
+asmlinkage struct pt_regs *sync_regs(struct pt_regs *eregs)
{
struct pt_regs *regs = eregs;
/* Did already sync */
@@ -380,6 +383,7 @@ asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
*regs = *eregs;
return regs;
}
+NOKPROBE_SYMBOL(sync_regs);
#endif
/*
@@ -406...
2020 Aug 24
0
[PATCH v6 48/76] x86/entry/64: Add entry code for #VC handler
...igned long arg2);
#endif
diff --git a/arch/x86/include/asm/traps.h b/arch/x86/include/asm/traps.h
index 6a308355ea29..1b86bb3abc56 100644
--- a/arch/x86/include/asm/traps.h
+++ b/arch/x86/include/asm/traps.h
@@ -15,6 +15,7 @@ asmlinkage __visible notrace struct pt_regs *sync_regs(struct pt_regs *eregs);
asmlinkage __visible notrace
struct bad_iret_stack *fixup_bad_iret(struct bad_iret_stack *s);
void __init trap_init(void);
+asmlinkage __visible noinstr struct pt_regs *vc_switch_off_ist(struct pt_regs *eregs);
#endif
#ifdef CONFIG_X86_F00F_BUG
diff --git a/arch/x86/kernel/traps.c b/arch/x...
2003 Sep 19
1
feature request: maildirquota
Hope maildirquota++ is soon supported, without it, dovecot is useless in my
use (mail hosting with maildirquotas).
Also QUOTA cabability in dovecot is needed to get to use my webmail plugins
that use
a001 CAPABILITY to get quota support. Courier imapd supports this.
--snippet from quota usage plugin to squirrelmail--
function sqimap_get_quota ($imap_stream, $mailbox) {
if
2008 Sep 01
4
BF1942 - GOLD ? hah.. doesnt work
On plain install wit patches etc...
wine version 1.1.3
Code:
hysics at physics:~/.wine/drive_c/Program Files/EA GAMES/Battlefield 1942$ dir
AdminTool bfcprt.dll DedicatedServer.exe mfc70.dll Patch\ Data
backup bfdist.vlu eReg Mods pb
BF1942.pid binkw32.dll fpupdate.exe Movies
BF1942_w32ded.exe BlackScreen.exe lexiconDS.dat msvcr70.dll
physics at
2012 Jul 20
0
CentOS 6.2 x86_64 + PHP 5.3.3 + Zend Guard Loader v3.3 == Segfault
Hello everyone,
I've got issues getting Zend Guard Loader v3.3 running.
Tried several installations, doesn't work for any. Once I install Zend
Guard Loader my PHP CLI binary starts to segfault *at exit*.
Same is true for apache processes with mod_php enabled: Works until you
SIGHUP your apache processes. Doing that your webserver quits with a
segfault.
Can anyone reproduce that
2013 Mar 24
0
[Fwd: Re: PHP Questions on move from CentOS 5.x to CentOS 6.x]
---------------------------- Original Message ----------------------------
Subject: Re: [CentOS] PHP Questions on move from CentOS 5.x to CentOS 6.x
From: "Max Pyziur" <pyz at brama.com>
Date: Sun, March 24, 2013 1:14 pm
To: "Reindl Harald" <h.reindl at thelounge.net>
--------------------------------------------------------------------------
>
>
2013 Mar 24
0
PHP Questions on move from CentOS 5.x to CentOS 6.x (fwd)
---------- Forwarded message ----------
Date: Sun, 24 Mar 2013 12:52:37 -0400 (EDT)
From: Max Pyziur <pyz at brama.com>
To: Reindl Harald <h.reindl at thelounge.net>
Cc: CentOS mailing list <centos at centos.org>
Subject: Re: [CentOS] PHP Questions on move from CentOS 5.x to CentOS 6.x
On Sun, 24 Mar 2013, Reindl Harald wrote:
>
>
> Am 24.03.2013 17:38, schrieb Max
2004 Aug 07
2
segmentation error
I have been using wine for about 18 months now to run quickbooks 6 which
it has been doing with better results each month (apart from the
glitches with the sound server introduced in the last few months).
However I recently upgraded my Mandrake 9.2 installation to 10 changing
from kernel 2.4.22-26mdk to kernel 2.6.3-7mdk. I did not upgrade wine
form the April edition which I compiled from source
2020 Aug 24
96
[PATCH v6 00/76] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de>
Hi,
here is the new version of the SEV-ES client enabling patch-set. It is
based on the latest tip/master branch and contains the necessary
changes. In particular those ar:
- 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
2013 Mar 24
5
PHP Questions on move from CentOS 5.x to CentOS 6.x
Greetings,
A malfunctioning disk this past week accelerated a lingering decision to
move to CentOS 6.x from CentOS 5.x.
Most of our content is functioning and being presented as it should be.
However, there appear to be php-related issues.
Basic squirrelmail (a php-dependent package) works correctly.
However, drupal, and other php-dependent parts that call postgresql and
mysql databases of
2015 Nov 27
0
Wine release 1.8-rc2
The Wine development release 1.8-rc2 is now available.
What's new in this release (see below for details):
- Bug fixes only, we are in code freeze.
The source is available from the following locations:
http://dl.winehq.org/wine/source/1.8/wine-1.8-rc2.tar.bz2
http://mirrors.ibiblio.org/wine/source/1.8/wine-1.8-rc2.tar.bz2
Binary packages for various distributions will be available
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c
which is separated from the function definition and is hard
to catch up the kernel update.
To solve this issue, I've tried to implement new
NOKPROBE_SYMBOL() macro for making kprobe blacklist at
build time. Since the NOKPROBE_SYMBOL() macros can be placed
right after the function is defined, it is easy to maintain.
This series
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c
which is separated from the function definition and is hard
to catch up the kernel update.
To solve this issue, I've tried to implement new
NOKPROBE_SYMBOL() macro for making kprobe blacklist at
build time. Since the NOKPROBE_SYMBOL() macros can be placed
right after the function is defined, it is easy to maintain.
This series
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi,
Here is the version 3 of NOKPORBE_SYMBOL series.
Currently the blacklist is maintained by hand in kprobes.c
which is separated from the function definition and is hard
to catch up the kernel update.
To solve this issue, I've introduced NOKPROBE_SYMBOL() macro
for making kprobe blacklist at build time. Since the
NOKPROBE_SYMBOL() macros can be placed right after the
function is defined
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi,
Here is the version 3 of NOKPORBE_SYMBOL series.
Currently the blacklist is maintained by hand in kprobes.c
which is separated from the function definition and is hard
to catch up the kernel update.
To solve this issue, I've introduced NOKPROBE_SYMBOL() macro
for making kprobe blacklist at build time. Since the
NOKPROBE_SYMBOL() macros can be placed right after the
function is defined
2020 Jul 24
86
[PATCH v5 00/75] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de>
Hi,
here is a rebased version of the latest SEV-ES patches. They are now
based on latest tip/master instead of upstream Linux and include the
necessary changes.
Changes to v4 are in particular:
- Moved early IDT setup code to idt.c, because the idt_descr
and the idt_table are now static
- This required to make stack protector work early (or
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de>
Hi,
here is the fourth version of the SEV-ES Guest Support patches. I
addressed the review comments sent to me for the previous version and
rebased the code v5.8-rc5.
The biggest change in this version is the IST handling code for the
#VC handler. I adapted the entry code for the #VC handler to the big
pile of entry code changes merged into
2020 Jul 14
92
[PATCH v4 00/75] x86: SEV-ES Guest Support
From: Joerg Roedel <jroedel at suse.de>
Hi,
here is the fourth version of the SEV-ES Guest Support patches. I
addressed the review comments sent to me for the previous version and
rebased the code v5.8-rc5.
The biggest change in this version is the IST handling code for the
#VC handler. I adapted the entry code for the #VC handler to the big
pile of entry code changes merged into