Deleted Added
full compact
pcpu.h (91613) pcpu.h (91617)
1/*-
2 * Copyright (c) 1999 Luoqi Chen <luoqi@freebsd.org>
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

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

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 * from: FreeBSD: src/sys/i386/include/globaldata.h,v 1.27 2001/04/27
1/*-
2 * Copyright (c) 1999 Luoqi Chen <luoqi@freebsd.org>
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

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

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 * from: FreeBSD: src/sys/i386/include/globaldata.h,v 1.27 2001/04/27
27 * $FreeBSD: head/sys/sparc64/include/pcpu.h 91613 2002-03-04 05:20:29Z jake $
27 * $FreeBSD: head/sys/sparc64/include/pcpu.h 91617 2002-03-04 07:12:36Z jake $
28 */
29
30#ifndef _MACHINE_PCPU_H_
31#define _MACHINE_PCPU_H_
32
33#ifdef _KERNEL
34
35#include <machine/asmacros.h>
36#include <machine/frame.h>
37#include <machine/intr_machdep.h>
38
39#define ALT_STACK_SIZE 128
40
28 */
29
30#ifndef _MACHINE_PCPU_H_
31#define _MACHINE_PCPU_H_
32
33#ifdef _KERNEL
34
35#include <machine/asmacros.h>
36#include <machine/frame.h>
37#include <machine/intr_machdep.h>
38
39#define ALT_STACK_SIZE 128
40
41struct vmspace;
42
41/*
42 * Inside the kernel, the globally reserved register g7 is used to
43 * point at the globaldata structure.
44 */
45#define PCPU_MD_FIELDS \
46 struct intr_queue pc_iq; /* interrupt queue */ \
43/*
44 * Inside the kernel, the globally reserved register g7 is used to
45 * point at the globaldata structure.
46 */
47#define PCPU_MD_FIELDS \
48 struct intr_queue pc_iq; /* interrupt queue */ \
49 struct vmspace *pc_vmspace; \
50 vm_offset_t pc_addr; \
47 u_int pc_mid; \
48 u_int pc_tlb_ctx; \
49 u_int pc_tlb_ctx_max; \
50 u_int pc_tlb_ctx_min; \
51 u_int pc_wp_insn; /* watch point support */ \
52 u_long pc_wp_pstate; \
53 u_long pc_wp_va; \
54 int pc_wp_mask

--- 14 unchanged lines hidden ---
51 u_int pc_mid; \
52 u_int pc_tlb_ctx; \
53 u_int pc_tlb_ctx_max; \
54 u_int pc_tlb_ctx_min; \
55 u_int pc_wp_insn; /* watch point support */ \
56 u_long pc_wp_pstate; \
57 u_long pc_wp_va; \
58 int pc_wp_mask

--- 14 unchanged lines hidden ---