Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
54a21b5c
Commit
54a21b5c
authored
Nov 25, 2018
by
Michael Ellerman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes' into next
This contains a few must have fixes, like the stack alignment one.
parents
ccda4af0
b2fed34a
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
76 additions
and
106 deletions
+76
-106
arch/powerpc/include/asm/io.h
arch/powerpc/include/asm/io.h
+7
-13
arch/powerpc/include/asm/ppc-opcode.h
arch/powerpc/include/asm/ppc-opcode.h
+2
-0
arch/powerpc/include/asm/ptrace.h
arch/powerpc/include/asm/ptrace.h
+1
-0
arch/powerpc/kernel/setup_64.c
arch/powerpc/kernel/setup_64.c
+2
-0
arch/powerpc/kvm/trace.h
arch/powerpc/kvm/trace.h
+6
-2
arch/powerpc/kvm/trace_booke.h
arch/powerpc/kvm/trace_booke.h
+7
-2
arch/powerpc/kvm/trace_hv.h
arch/powerpc/kvm/trace_hv.h
+7
-2
arch/powerpc/kvm/trace_pr.h
arch/powerpc/kvm/trace_pr.h
+7
-2
arch/powerpc/mm/numa.c
arch/powerpc/mm/numa.c
+1
-1
arch/powerpc/mm/slb.c
arch/powerpc/mm/slb.c
+14
-21
arch/powerpc/platforms/powernv/npu-dma.c
arch/powerpc/platforms/powernv/npu-dma.c
+4
-60
tools/testing/selftests/powerpc/mm/wild_bctr.c
tools/testing/selftests/powerpc/mm/wild_bctr.c
+18
-3
No files found.
arch/powerpc/include/asm/io.h
View file @
54a21b5c
...
@@ -268,19 +268,13 @@ extern void _memcpy_toio(volatile void __iomem *dest, const void *src,
...
@@ -268,19 +268,13 @@ extern void _memcpy_toio(volatile void __iomem *dest, const void *src,
* their hooks, a bitfield is reserved for use by the platform near the
* their hooks, a bitfield is reserved for use by the platform near the
* top of MMIO addresses (not PIO, those have to cope the hard way).
* top of MMIO addresses (not PIO, those have to cope the hard way).
*
*
* This bit field is 12 bits and is at the top of the IO virtual
* The highest address in the kernel virtual space are:
* addresses PCI_IO_INDIRECT_TOKEN_MASK.
*
*
* The kernel virtual space is thus:
* d0003fffffffffff # with Hash MMU
* c00fffffffffffff # with Radix MMU
*
*
* 0xD000000000000000 : vmalloc
* The top 4 bits are reserved as the region ID on hash, leaving us 8 bits
* 0xD000080000000000 : PCI PHB IO space
* that can be used for the field.
* 0xD000080080000000 : ioremap
* 0xD0000fffffffffff : end of ioremap region
*
* Since the top 4 bits are reserved as the region ID, we use thus
* the next 12 bits and keep 4 bits available for the future if the
* virtual address space is ever to be extended.
*
*
* The direct IO mapping operations will then mask off those bits
* The direct IO mapping operations will then mask off those bits
* before doing the actual access, though that only happen when
* before doing the actual access, though that only happen when
...
@@ -292,8 +286,8 @@ extern void _memcpy_toio(volatile void __iomem *dest, const void *src,
...
@@ -292,8 +286,8 @@ extern void _memcpy_toio(volatile void __iomem *dest, const void *src,
*/
*/
#ifdef CONFIG_PPC_INDIRECT_MMIO
#ifdef CONFIG_PPC_INDIRECT_MMIO
#define PCI_IO_IND_TOKEN_
MASK 0x0fff000000000000ul
#define PCI_IO_IND_TOKEN_
SHIFT 52
#define PCI_IO_IND_TOKEN_
SHIFT 48
#define PCI_IO_IND_TOKEN_
MASK (0xfful << PCI_IO_IND_TOKEN_SHIFT)
#define PCI_FIX_ADDR(addr) \
#define PCI_FIX_ADDR(addr) \
((PCI_IO_ADDR)(((unsigned long)(addr)) & ~PCI_IO_IND_TOKEN_MASK))
((PCI_IO_ADDR)(((unsigned long)(addr)) & ~PCI_IO_IND_TOKEN_MASK))
#define PCI_GET_ADDR_TOKEN(addr) \
#define PCI_GET_ADDR_TOKEN(addr) \
...
...
arch/powerpc/include/asm/ppc-opcode.h
View file @
54a21b5c
...
@@ -493,6 +493,8 @@
...
@@ -493,6 +493,8 @@
__PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b))
__PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b))
#define PPC_SLBFEE_DOT(t, b) stringify_in_c(.long PPC_INST_SLBFEE | \
#define PPC_SLBFEE_DOT(t, b) stringify_in_c(.long PPC_INST_SLBFEE | \
__PPC_RT(t) | __PPC_RB(b))
__PPC_RT(t) | __PPC_RB(b))
#define __PPC_SLBFEE_DOT(t, b) stringify_in_c(.long PPC_INST_SLBFEE | \
___PPC_RT(t) | ___PPC_RB(b))
#define PPC_ICBT(c,a,b) stringify_in_c(.long PPC_INST_ICBT | \
#define PPC_ICBT(c,a,b) stringify_in_c(.long PPC_INST_ICBT | \
__PPC_CT(c) | __PPC_RA0(a) | __PPC_RB(b))
__PPC_CT(c) | __PPC_RA0(a) | __PPC_RB(b))
/* PASemi instructions */
/* PASemi instructions */
...
...
arch/powerpc/include/asm/ptrace.h
View file @
54a21b5c
...
@@ -54,6 +54,7 @@ struct pt_regs
...
@@ -54,6 +54,7 @@ struct pt_regs
#ifdef CONFIG_PPC64
#ifdef CONFIG_PPC64
unsigned
long
ppr
;
unsigned
long
ppr
;
unsigned
long
__pad
;
/* Maintain 16 byte interrupt stack alignment */
#endif
#endif
};
};
#endif
#endif
...
...
arch/powerpc/kernel/setup_64.c
View file @
54a21b5c
...
@@ -636,6 +636,8 @@ static void *__init alloc_stack(unsigned long limit, int cpu)
...
@@ -636,6 +636,8 @@ static void *__init alloc_stack(unsigned long limit, int cpu)
{
{
unsigned
long
pa
;
unsigned
long
pa
;
BUILD_BUG_ON
(
STACK_INT_FRAME_SIZE
%
16
);
pa
=
memblock_alloc_base_nid
(
THREAD_SIZE
,
THREAD_SIZE
,
limit
,
pa
=
memblock_alloc_base_nid
(
THREAD_SIZE
,
THREAD_SIZE
,
limit
,
early_cpu_to_node
(
cpu
),
MEMBLOCK_NONE
);
early_cpu_to_node
(
cpu
),
MEMBLOCK_NONE
);
if
(
!
pa
)
{
if
(
!
pa
)
{
...
...
arch/powerpc/kvm/trace.h
View file @
54a21b5c
...
@@ -6,8 +6,6 @@
...
@@ -6,8 +6,6 @@
#undef TRACE_SYSTEM
#undef TRACE_SYSTEM
#define TRACE_SYSTEM kvm
#define TRACE_SYSTEM kvm
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace
/*
/*
* Tracepoint for guest mode entry.
* Tracepoint for guest mode entry.
...
@@ -120,4 +118,10 @@ TRACE_EVENT(kvm_check_requests,
...
@@ -120,4 +118,10 @@ TRACE_EVENT(kvm_check_requests,
#endif
/* _TRACE_KVM_H */
#endif
/* _TRACE_KVM_H */
/* This part must be outside protection */
/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace
#include <trace/define_trace.h>
#include <trace/define_trace.h>
arch/powerpc/kvm/trace_booke.h
View file @
54a21b5c
...
@@ -6,8 +6,6 @@
...
@@ -6,8 +6,6 @@
#undef TRACE_SYSTEM
#undef TRACE_SYSTEM
#define TRACE_SYSTEM kvm_booke
#define TRACE_SYSTEM kvm_booke
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_booke
#define kvm_trace_symbol_exit \
#define kvm_trace_symbol_exit \
{0, "CRITICAL"}, \
{0, "CRITICAL"}, \
...
@@ -218,4 +216,11 @@ TRACE_EVENT(kvm_booke_queue_irqprio,
...
@@ -218,4 +216,11 @@ TRACE_EVENT(kvm_booke_queue_irqprio,
#endif
#endif
/* This part must be outside protection */
/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_booke
#include <trace/define_trace.h>
#include <trace/define_trace.h>
arch/powerpc/kvm/trace_hv.h
View file @
54a21b5c
...
@@ -9,8 +9,6 @@
...
@@ -9,8 +9,6 @@
#undef TRACE_SYSTEM
#undef TRACE_SYSTEM
#define TRACE_SYSTEM kvm_hv
#define TRACE_SYSTEM kvm_hv
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_hv
#define kvm_trace_symbol_hcall \
#define kvm_trace_symbol_hcall \
{H_REMOVE, "H_REMOVE"}, \
{H_REMOVE, "H_REMOVE"}, \
...
@@ -497,4 +495,11 @@ TRACE_EVENT(kvmppc_run_vcpu_exit,
...
@@ -497,4 +495,11 @@ TRACE_EVENT(kvmppc_run_vcpu_exit,
#endif
/* _TRACE_KVM_HV_H */
#endif
/* _TRACE_KVM_HV_H */
/* This part must be outside protection */
/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_hv
#include <trace/define_trace.h>
#include <trace/define_trace.h>
arch/powerpc/kvm/trace_pr.h
View file @
54a21b5c
...
@@ -8,8 +8,6 @@
...
@@ -8,8 +8,6 @@
#undef TRACE_SYSTEM
#undef TRACE_SYSTEM
#define TRACE_SYSTEM kvm_pr
#define TRACE_SYSTEM kvm_pr
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_pr
TRACE_EVENT
(
kvm_book3s_reenter
,
TRACE_EVENT
(
kvm_book3s_reenter
,
TP_PROTO
(
int
r
,
struct
kvm_vcpu
*
vcpu
),
TP_PROTO
(
int
r
,
struct
kvm_vcpu
*
vcpu
),
...
@@ -257,4 +255,11 @@ TRACE_EVENT(kvm_exit,
...
@@ -257,4 +255,11 @@ TRACE_EVENT(kvm_exit,
#endif
/* _TRACE_KVM_H */
#endif
/* _TRACE_KVM_H */
/* This part must be outside protection */
/* This part must be outside protection */
#undef TRACE_INCLUDE_PATH
#undef TRACE_INCLUDE_FILE
#define TRACE_INCLUDE_PATH .
#define TRACE_INCLUDE_FILE trace_pr
#include <trace/define_trace.h>
#include <trace/define_trace.h>
arch/powerpc/mm/numa.c
View file @
54a21b5c
...
@@ -1178,7 +1178,7 @@ static long vphn_get_associativity(unsigned long cpu,
...
@@ -1178,7 +1178,7 @@ static long vphn_get_associativity(unsigned long cpu,
switch
(
rc
)
{
switch
(
rc
)
{
case
H_FUNCTION
:
case
H_FUNCTION
:
printk
(
KERN_INFO
printk
_once
(
KERN_INFO
"VPHN is not supported. Disabling polling...
\n
"
);
"VPHN is not supported. Disabling polling...
\n
"
);
stop_topology_update
();
stop_topology_update
();
break
;
break
;
...
...
arch/powerpc/mm/slb.c
View file @
54a21b5c
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#include <asm/mmu.h>
#include <asm/mmu.h>
#include <asm/mmu_context.h>
#include <asm/mmu_context.h>
#include <asm/paca.h>
#include <asm/paca.h>
#include <asm/ppc-opcode.h>
#include <asm/cputable.h>
#include <asm/cputable.h>
#include <asm/cacheflush.h>
#include <asm/cacheflush.h>
#include <asm/smp.h>
#include <asm/smp.h>
...
@@ -58,27 +59,19 @@ static inline unsigned long mk_vsid_data(unsigned long ea, int ssize,
...
@@ -58,27 +59,19 @@ static inline unsigned long mk_vsid_data(unsigned long ea, int ssize,
return
__mk_vsid_data
(
get_kernel_vsid
(
ea
,
ssize
),
ssize
,
flags
);
return
__mk_vsid_data
(
get_kernel_vsid
(
ea
,
ssize
),
ssize
,
flags
);
}
}
static
void
assert_slb_
exists
(
unsigned
long
ea
)
static
void
assert_slb_
presence
(
bool
present
,
unsigned
long
ea
)
{
{
#ifdef CONFIG_DEBUG_VM
#ifdef CONFIG_DEBUG_VM
unsigned
long
tmp
;
unsigned
long
tmp
;
WARN_ON_ONCE
(
mfmsr
()
&
MSR_EE
);
WARN_ON_ONCE
(
mfmsr
()
&
MSR_EE
);
asm
volatile
(
"slbfee. %0, %1"
:
"=r"
(
tmp
)
:
"r"
(
ea
)
:
"cr0"
);
if
(
!
cpu_has_feature
(
CPU_FTR_ARCH_206
))
WARN_ON
(
tmp
==
0
);
return
;
#endif
}
static
void
assert_slb_notexists
(
unsigned
long
ea
)
{
#ifdef CONFIG_DEBUG_VM
unsigned
long
tmp
;
WARN_ON_ONCE
(
mfmsr
()
&
MSR_EE
);
asm
volatile
(
__PPC_SLBFEE_DOT
(
%
0
,
%
1
)
:
"=r"
(
tmp
)
:
"r"
(
ea
)
:
"cr0"
);
asm
volatile
(
"slbfee. %0, %1"
:
"=r"
(
tmp
)
:
"r"
(
ea
)
:
"cr0"
);
WARN_ON
(
present
==
(
tmp
==
0
));
WARN_ON
(
tmp
!=
0
);
#endif
#endif
}
}
...
@@ -114,7 +107,7 @@ static inline void create_shadowed_slbe(unsigned long ea, int ssize,
...
@@ -114,7 +107,7 @@ static inline void create_shadowed_slbe(unsigned long ea, int ssize,
*/
*/
slb_shadow_update
(
ea
,
ssize
,
flags
,
index
);
slb_shadow_update
(
ea
,
ssize
,
flags
,
index
);
assert_slb_
notexists
(
ea
);
assert_slb_
presence
(
false
,
ea
);
asm
volatile
(
"slbmte %0,%1"
:
asm
volatile
(
"slbmte %0,%1"
:
:
"r"
(
mk_vsid_data
(
ea
,
ssize
,
flags
)),
:
"r"
(
mk_vsid_data
(
ea
,
ssize
,
flags
)),
"r"
(
mk_esid_data
(
ea
,
ssize
,
index
))
"r"
(
mk_esid_data
(
ea
,
ssize
,
index
))
...
@@ -137,7 +130,7 @@ void __slb_restore_bolted_realmode(void)
...
@@ -137,7 +130,7 @@ void __slb_restore_bolted_realmode(void)
"r"
(
be64_to_cpu
(
p
->
save_area
[
index
].
esid
)));
"r"
(
be64_to_cpu
(
p
->
save_area
[
index
].
esid
)));
}
}
assert_slb_
exists
(
local_paca
->
kstack
);
assert_slb_
presence
(
true
,
local_paca
->
kstack
);
}
}
/*
/*
...
@@ -185,7 +178,7 @@ void slb_flush_and_restore_bolted(void)
...
@@ -185,7 +178,7 @@ void slb_flush_and_restore_bolted(void)
::
"r"
(
be64_to_cpu
(
p
->
save_area
[
KSTACK_INDEX
].
vsid
)),
::
"r"
(
be64_to_cpu
(
p
->
save_area
[
KSTACK_INDEX
].
vsid
)),
"r"
(
be64_to_cpu
(
p
->
save_area
[
KSTACK_INDEX
].
esid
))
"r"
(
be64_to_cpu
(
p
->
save_area
[
KSTACK_INDEX
].
esid
))
:
"memory"
);
:
"memory"
);
assert_slb_
exists
(
get_paca
()
->
kstack
);
assert_slb_
presence
(
true
,
get_paca
()
->
kstack
);
get_paca
()
->
slb_cache_ptr
=
0
;
get_paca
()
->
slb_cache_ptr
=
0
;
...
@@ -443,9 +436,9 @@ void switch_slb(struct task_struct *tsk, struct mm_struct *mm)
...
@@ -443,9 +436,9 @@ void switch_slb(struct task_struct *tsk, struct mm_struct *mm)
ea
=
(
unsigned
long
)
ea
=
(
unsigned
long
)
get_paca
()
->
slb_cache
[
i
]
<<
SID_SHIFT
;
get_paca
()
->
slb_cache
[
i
]
<<
SID_SHIFT
;
/*
/*
* Could assert_slb_
exists here, but hypervisor
* Could assert_slb_
presence(true) here, but
*
or machine check could have come in and
*
hypervisor or machine check could have come
* removed the entry at this point.
*
in and
removed the entry at this point.
*/
*/
slbie_data
=
ea
;
slbie_data
=
ea
;
...
@@ -676,7 +669,7 @@ static long slb_insert_entry(unsigned long ea, unsigned long context,
...
@@ -676,7 +669,7 @@ static long slb_insert_entry(unsigned long ea, unsigned long context,
* User preloads should add isync afterwards in case the kernel
* User preloads should add isync afterwards in case the kernel
* accesses user memory before it returns to userspace with rfid.
* accesses user memory before it returns to userspace with rfid.
*/
*/
assert_slb_
notexists
(
ea
);
assert_slb_
presence
(
false
,
ea
);
asm
volatile
(
"slbmte %0, %1"
:
:
"r"
(
vsid_data
),
"r"
(
esid_data
));
asm
volatile
(
"slbmte %0, %1"
:
:
"r"
(
vsid_data
),
"r"
(
esid_data
));
barrier
();
barrier
();
...
@@ -715,7 +708,7 @@ static long slb_allocate_kernel(unsigned long ea, unsigned long id)
...
@@ -715,7 +708,7 @@ static long slb_allocate_kernel(unsigned long ea, unsigned long id)
return
-
EFAULT
;
return
-
EFAULT
;
if
(
ea
<
H_VMALLOC_END
)
if
(
ea
<
H_VMALLOC_END
)
flags
=
get_paca
()
->
vmalloc_sllp
;
flags
=
local_paca
->
vmalloc_sllp
;
else
else
flags
=
SLB_VSID_KERNEL
|
mmu_psize_defs
[
mmu_io_psize
].
sllp
;
flags
=
SLB_VSID_KERNEL
|
mmu_psize_defs
[
mmu_io_psize
].
sllp
;
}
else
{
}
else
{
...
...
arch/powerpc/platforms/powernv/npu-dma.c
View file @
54a21b5c
...
@@ -102,63 +102,6 @@ struct pci_dev *pnv_pci_get_npu_dev(struct pci_dev *gpdev, int index)
...
@@ -102,63 +102,6 @@ struct pci_dev *pnv_pci_get_npu_dev(struct pci_dev *gpdev, int index)
}
}
EXPORT_SYMBOL
(
pnv_pci_get_npu_dev
);
EXPORT_SYMBOL
(
pnv_pci_get_npu_dev
);
#define NPU_DMA_OP_UNSUPPORTED() \
dev_err_once(dev, "%s operation unsupported for NVLink devices\n", \
__func__)
static
void
*
dma_npu_alloc
(
struct
device
*
dev
,
size_t
size
,
dma_addr_t
*
dma_handle
,
gfp_t
flag
,
unsigned
long
attrs
)
{
NPU_DMA_OP_UNSUPPORTED
();
return
NULL
;
}
static
void
dma_npu_free
(
struct
device
*
dev
,
size_t
size
,
void
*
vaddr
,
dma_addr_t
dma_handle
,
unsigned
long
attrs
)
{
NPU_DMA_OP_UNSUPPORTED
();
}
static
dma_addr_t
dma_npu_map_page
(
struct
device
*
dev
,
struct
page
*
page
,
unsigned
long
offset
,
size_t
size
,
enum
dma_data_direction
direction
,
unsigned
long
attrs
)
{
NPU_DMA_OP_UNSUPPORTED
();
return
0
;
}
static
int
dma_npu_map_sg
(
struct
device
*
dev
,
struct
scatterlist
*
sglist
,
int
nelems
,
enum
dma_data_direction
direction
,
unsigned
long
attrs
)
{
NPU_DMA_OP_UNSUPPORTED
();
return
0
;
}
static
int
dma_npu_dma_supported
(
struct
device
*
dev
,
u64
mask
)
{
NPU_DMA_OP_UNSUPPORTED
();
return
0
;
}
static
u64
dma_npu_get_required_mask
(
struct
device
*
dev
)
{
NPU_DMA_OP_UNSUPPORTED
();
return
0
;
}
static
const
struct
dma_map_ops
dma_npu_ops
=
{
.
map_page
=
dma_npu_map_page
,
.
map_sg
=
dma_npu_map_sg
,
.
alloc
=
dma_npu_alloc
,
.
free
=
dma_npu_free
,
.
dma_supported
=
dma_npu_dma_supported
,
.
get_required_mask
=
dma_npu_get_required_mask
,
};
/*
/*
* Returns the PE assoicated with the PCI device of the given
* Returns the PE assoicated with the PCI device of the given
* NPU. Returns the linked pci device if pci_dev != NULL.
* NPU. Returns the linked pci device if pci_dev != NULL.
...
@@ -270,10 +213,11 @@ static void pnv_npu_dma_set_32(struct pnv_ioda_pe *npe)
...
@@ -270,10 +213,11 @@ static void pnv_npu_dma_set_32(struct pnv_ioda_pe *npe)
rc
=
pnv_npu_set_window
(
npe
,
0
,
gpe
->
table_group
.
tables
[
0
]);
rc
=
pnv_npu_set_window
(
npe
,
0
,
gpe
->
table_group
.
tables
[
0
]);
/*
/*
* We don't initialise npu_pe->tce32_table as we always use
* NVLink devices use the same TCE table configuration as
* dma_npu_ops which are nops.
* their parent device so drivers shouldn't be doing DMA
* operations directly on these devices.
*/
*/
set_dma_ops
(
&
npe
->
pdev
->
dev
,
&
dma_npu_ops
);
set_dma_ops
(
&
npe
->
pdev
->
dev
,
NULL
);
}
}
/*
/*
...
...
tools/testing/selftests/powerpc/mm/wild_bctr.c
View file @
54a21b5c
...
@@ -47,8 +47,9 @@ static int ok(void)
...
@@ -47,8 +47,9 @@ static int ok(void)
return
0
;
return
0
;
}
}
#define REG_POISON 0x5a5aUL
#define REG_POISON 0x5a5a
#define POISONED_REG(n) ((REG_POISON << 48) | ((n) << 32) | (REG_POISON << 16) | (n))
#define POISONED_REG(n) ((((unsigned long)REG_POISON) << 48) | ((n) << 32) | \
(((unsigned long)REG_POISON) << 16) | (n))
static
inline
void
poison_regs
(
void
)
static
inline
void
poison_regs
(
void
)
{
{
...
@@ -105,6 +106,20 @@ static void dump_regs(void)
...
@@ -105,6 +106,20 @@ static void dump_regs(void)
}
}
}
}
#ifdef _CALL_AIXDESC
struct
opd
{
unsigned
long
ip
;
unsigned
long
toc
;
unsigned
long
env
;
};
static
struct
opd
bad_opd
=
{
.
ip
=
BAD_NIP
,
};
#define BAD_FUNC (&bad_opd)
#else
#define BAD_FUNC BAD_NIP
#endif
int
test_wild_bctr
(
void
)
int
test_wild_bctr
(
void
)
{
{
int
(
*
func_ptr
)(
void
);
int
(
*
func_ptr
)(
void
);
...
@@ -133,7 +148,7 @@ int test_wild_bctr(void)
...
@@ -133,7 +148,7 @@ int test_wild_bctr(void)
poison_regs
();
poison_regs
();
func_ptr
=
(
int
(
*
)(
void
))
BAD_
NIP
;
func_ptr
=
(
int
(
*
)(
void
))
BAD_
FUNC
;
func_ptr
();
func_ptr
();
FAIL_IF
(
1
);
/* we didn't segv? */
FAIL_IF
(
1
);
/* we didn't segv? */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment