Deleted Added
full compact
pcpu.h (204152) pcpu.h (210601)
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 204152 2010-02-20 23:24:19Z marius $
27 * $FreeBSD: head/sys/sparc64/include/pcpu.h 210601 2010-07-29 12:08:46Z mav $
28 */
29
30#ifndef _MACHINE_PCPU_H_
31#define _MACHINE_PCPU_H_
32
33#include <machine/asmacros.h>
34#include <machine/cache.h>
35#include <machine/frame.h>

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

48 struct intr_request pc_irpool[IR_FREE]; \
49 struct intr_request *pc_irhead; \
50 struct intr_request **pc_irtail; \
51 struct intr_request *pc_irfree; \
52 struct pmap *pc_pmap; \
53 vm_offset_t pc_addr; \
54 u_long pc_tickref; \
55 u_long pc_tickadj; \
28 */
29
30#ifndef _MACHINE_PCPU_H_
31#define _MACHINE_PCPU_H_
32
33#include <machine/asmacros.h>
34#include <machine/cache.h>
35#include <machine/frame.h>

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

48 struct intr_request pc_irpool[IR_FREE]; \
49 struct intr_request *pc_irhead; \
50 struct intr_request **pc_irtail; \
51 struct intr_request *pc_irfree; \
52 struct pmap *pc_pmap; \
53 vm_offset_t pc_addr; \
54 u_long pc_tickref; \
55 u_long pc_tickadj; \
56 u_long pc_tickincrement; \
56 u_int pc_clock; \
57 u_int pc_impl; \
58 u_int pc_mid; \
59 u_int pc_node; \
60 u_int pc_tlb_ctx; \
61 u_int pc_tlb_ctx_max; \
62 u_int pc_tlb_ctx_min
63

--- 24 unchanged lines hidden ---
57 u_int pc_clock; \
58 u_int pc_impl; \
59 u_int pc_mid; \
60 u_int pc_node; \
61 u_int pc_tlb_ctx; \
62 u_int pc_tlb_ctx_max; \
63 u_int pc_tlb_ctx_min
64

--- 24 unchanged lines hidden ---