Displaying 4 results from an estimated 4 matches for "ff15".
Did you mean:
f15
2005 Jun 02
1
Lacing Values
...n do this, no
problem. My question is, the lacing values seem to indicate where the
packet boundaries for the two of these are, is this required, or is this
just a hint?
Further, I'm seeing that the lacing values for audio packets are rather
wild. A hex string looks like: 9D 9893 FFFF 08FF FF15 5352 514E 5595
8F92 FFFF 1BFF FF11 FFF8 FF
Thats a set of lacing values for one page. Is this also giving me hints
(or perhaps an absolute) as to where to find packet boundaries?
Thanks -
Christopher
2017 Oct 04
1
[RFC v3 20/27] x86/ftrace: Adapt function tracing for PIE support
...* No locking needed, this must be called via kstop_machine
@@ -72,6 +77,44 @@ static unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr)
return calc.code;
}
+#ifdef CONFIG_X86_PIE
+union ftrace_code_got_union {
+ char code[MCOUNT_INSN_SIZE];
+ struct {
+ unsigned short ff15;
+ int offset;
+ } __attribute__((packed));
+};
+
+/* Used to identify a mcount GOT call on PIE */
+static unsigned char *ftrace_original_call(struct module* mod, unsigned long ip,
+ unsigned long addr,
+ unsigned int size)
+{
+ static union ftrace_code_got_union calc;
+ unsigned lon...
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general. Thanks to
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position
Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below
the top 2G of the virtual address space. It allows to optionally extend the
KASLR randomization range from 1G to 3G.
Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler
changes, PIE support and KASLR in general. Thanks to