Displaying 10 results from an estimated 10 matches for "rw0".
Did you mean:
rw
2017 Oct 11
1
[PATCH v1 01/27] x86/crypto: Adapt assembly for PIE support
...);
outunpack_blocks(RA2, RB2, RC2, RD2, RTMP, RX, RKRF, RKM);
diff --git a/arch/x86/crypto/des3_ede-asm_64.S b/arch/x86/crypto/des3_ede-asm_64.S
index 8e49ce117494..4bbd3ec78df5 100644
--- a/arch/x86/crypto/des3_ede-asm_64.S
+++ b/arch/x86/crypto/des3_ede-asm_64.S
@@ -138,21 +138,29 @@
movzbl RW0bl, RT2d; \
movzbl RW0bh, RT3d; \
shrq $16, RW0; \
- movq s8(, RT0, 8), RT0; \
- xorq s6(, RT1, 8), to; \
+ leaq s8(%rip), RW1; \
+ movq (RW1, RT0, 8), RT0; \
+ leaq s6(%rip), RW1; \
+ xorq (RW1, RT1, 8), to; \
movzbl RW0bl, RL1d; \
movzbl RW0bh, RT1d; \
shrl $16, RW0d; \
- xorq s4(, RT2,...
2008 Mar 17
0
CDRW-DVD Mount Problem, Centos 5.1, Intel board...
...s devpts gid=5,mode=620 0 0
sysfs/sys sysfs defaults 0 0
proc /proc proc defaults 00
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
>From cat /proc/mounts:
[root at localhost/]# cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3rw,data=ordered 0 0
/dev /dev tmpfs rw 0 0
/proc /proc proc rw0 0
/sys /sys sysfs rw 0 0
none /selinux selinuxfs rw 00
/proc/bus/usb /proc/bus/usb usbfs rw 0 0
devpts /dev/ptsdevpts rw 0 0
/dev/sda1 /boot ext3 rw,data=ordered 0 0
tmpfs/dev/shm tmpfs rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 00
/etc/auto....
2008 Mar 18
0
SOLVED: CDRW-DVD Mount Problem, Centos 5.1, Intel board...
...s devpts gid=5,mode=620 0 0
sysfs/sys sysfs defaults 0 0
proc /proc proc defaults 00
/dev/VolGroup00/LogVol01 swap swap defaults 0 0
>From cat /proc/mounts:
[root at localhost/]# cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / ext3rw,data=ordered 0 0
/dev /dev tmpfs rw 0 0
/proc /proc proc rw0 0
/sys /sys sysfs rw 0 0
none /selinux selinuxfs rw 00
/proc/bus/usb /proc/bus/usb usbfs rw 0 0
devpts /dev/ptsdevpts rw 0 0
/dev/sda1 /boot ext3 rw,data=ordered 0 0
tmpfs/dev/shm tmpfs rw 0 0
none /proc/sys/fs/binfmt_misc binfmt_misc rw0 0
sunrpc /var/lib/nfs/rpc_pipefs rpc_pipefs rw 00
/etc/auto....
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce
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
2018 May 23
33
[PATCH v3 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v3:
- Update on message to describe longer term PIE goal.
- Minor change on ftrace if condition.
- Changed code using xchgq.
- patch v2:
- Adapt patch to work post KPTI and compiler changes
- Redo all performance testing with latest configs and compilers
- Simplify mov macro on PIE (MOVABS now)
- Reduce GOT footprint
- patch v1:
- Simplify ftrace
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce dynamic relocation space on
mapped memory. It also simplifies the relocation process.
- Move the start the module section next to the kernel. Remove the need for
-mcmodel=large on modules. Extends
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes:
- patch v1:
- Simplify ftrace implementation.
- Use gcc mstack-protector-guard-reg=%gs with PIE when possible.
- rfc v3:
- Use --emit-relocs instead of -pie to reduce dynamic relocation space on
mapped memory. It also simplifies the relocation process.
- Move the start the module section next to the kernel. Remove the need for
-mcmodel=large on modules. Extends