Deleted Added
full compact
intr_machdep.h (210176) intr_machdep.h (210601)
1/*-
2 * Copyright (c) 2001 Jake Burkholder.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Jake Burkholder.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/sparc64/include/intr_machdep.h 210176 2010-07-16 22:09:29Z mav $
26 * $FreeBSD: head/sys/sparc64/include/intr_machdep.h 210601 2010-07-29 12:08:46Z mav $
27 */
28
29#ifndef _MACHINE_INTR_MACHDEP_H_
30#define _MACHINE_INTR_MACHDEP_H_
31
32#define IRSR_BUSY (1 << 5)
33
34#define PIL_MAX (1 << 4)

--- 6 unchanged lines hidden (view full) ---

41#define IV_SHIFT 6
42
43#define PIL_LOW 1 /* stray interrupts */
44#define PIL_ITHREAD 2 /* interrupts that use ithreads */
45#define PIL_RENDEZVOUS 3 /* smp rendezvous ipi */
46#define PIL_AST 4 /* ast ipi */
47#define PIL_STOP 5 /* stop cpu ipi */
48#define PIL_PREEMPT 6 /* preempt idle thread cpu ipi */
27 */
28
29#ifndef _MACHINE_INTR_MACHDEP_H_
30#define _MACHINE_INTR_MACHDEP_H_
31
32#define IRSR_BUSY (1 << 5)
33
34#define PIL_MAX (1 << 4)

--- 6 unchanged lines hidden (view full) ---

41#define IV_SHIFT 6
42
43#define PIL_LOW 1 /* stray interrupts */
44#define PIL_ITHREAD 2 /* interrupts that use ithreads */
45#define PIL_RENDEZVOUS 3 /* smp rendezvous ipi */
46#define PIL_AST 4 /* ast ipi */
47#define PIL_STOP 5 /* stop cpu ipi */
48#define PIL_PREEMPT 6 /* preempt idle thread cpu ipi */
49#define PIL_HARDCLOCK 7 /* hardclock broadcast */
50#define PIL_STATCLOCK 8 /* statclock broadcast */
49#define PIL_FILTER 12 /* filter interrupts */
50#define PIL_FAST 13 /* fast interrupts */
51#define PIL_TICK 14 /* tick interrupts */
52
53#ifndef LOCORE
54
55struct trapframe;
56

--- 54 unchanged lines hidden ---
51#define PIL_FILTER 12 /* filter interrupts */
52#define PIL_FAST 13 /* fast interrupts */
53#define PIL_TICK 14 /* tick interrupts */
54
55#ifndef LOCORE
56
57struct trapframe;
58

--- 54 unchanged lines hidden ---