Deleted Added
full compact
genassym.c (175982) genassym.c (183838)
1/*-
2 * Copyright (c) 2004 Olivier Houchard
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

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

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 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2004 Olivier Houchard
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

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

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 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/arm/arm/genassym.c 175982 2008-02-05 10:22:33Z raj $");
29__FBSDID("$FreeBSD: head/sys/arm/arm/genassym.c 183838 2008-10-13 18:59:59Z raj $");
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/assym.h>
33#include <sys/proc.h>
34#include <sys/mbuf.h>
35#include <sys/vmmeter.h>
36#include <vm/vm.h>
37#include <vm/pmap.h>

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

74ASSYM(M_DATA, offsetof(struct mbuf, m_data));
75ASSYM(M_NEXT, offsetof(struct mbuf, m_next));
76ASSYM(IP_SRC, offsetof(struct ip, ip_src));
77ASSYM(IP_DST, offsetof(struct ip, ip_dst));
78ASSYM(CF_SETTTB, offsetof(struct cpu_functions, cf_setttb));
79ASSYM(CF_CONTROL, offsetof(struct cpu_functions, cf_control));
80ASSYM(CF_CONTEXT_SWITCH, offsetof(struct cpu_functions, cf_context_switch));
81ASSYM(CF_DCACHE_WB_RANGE, offsetof(struct cpu_functions, cf_dcache_wb_range));
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/assym.h>
33#include <sys/proc.h>
34#include <sys/mbuf.h>
35#include <sys/vmmeter.h>
36#include <vm/vm.h>
37#include <vm/pmap.h>

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

74ASSYM(M_DATA, offsetof(struct mbuf, m_data));
75ASSYM(M_NEXT, offsetof(struct mbuf, m_next));
76ASSYM(IP_SRC, offsetof(struct ip, ip_src));
77ASSYM(IP_DST, offsetof(struct ip, ip_dst));
78ASSYM(CF_SETTTB, offsetof(struct cpu_functions, cf_setttb));
79ASSYM(CF_CONTROL, offsetof(struct cpu_functions, cf_control));
80ASSYM(CF_CONTEXT_SWITCH, offsetof(struct cpu_functions, cf_context_switch));
81ASSYM(CF_DCACHE_WB_RANGE, offsetof(struct cpu_functions, cf_dcache_wb_range));
82ASSYM(CF_L2CACHE_WB_RANGE, offsetof(struct cpu_functions, cf_l2cache_wb_range));
82ASSYM(CF_IDCACHE_WBINV_ALL, offsetof(struct cpu_functions, cf_idcache_wbinv_all));
83ASSYM(CF_IDCACHE_WBINV_ALL, offsetof(struct cpu_functions, cf_idcache_wbinv_all));
84ASSYM(CF_L2CACHE_WBINV_ALL, offsetof(struct cpu_functions, cf_l2cache_wbinv_all));
83ASSYM(CF_TLB_FLUSHID_SE, offsetof(struct cpu_functions, cf_tlb_flushID_SE));
84ASSYM(CF_ICACHE_SYNC, offsetof(struct cpu_functions, cf_icache_sync_all));
85
86ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap));
87ASSYM(V_SOFT, offsetof(struct vmmeter, v_soft));
88ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
89
90ASSYM(TD_PCB, offsetof(struct thread, td_pcb));

--- 31 unchanged lines hidden ---
85ASSYM(CF_TLB_FLUSHID_SE, offsetof(struct cpu_functions, cf_tlb_flushID_SE));
86ASSYM(CF_ICACHE_SYNC, offsetof(struct cpu_functions, cf_icache_sync_all));
87
88ASSYM(V_TRAP, offsetof(struct vmmeter, v_trap));
89ASSYM(V_SOFT, offsetof(struct vmmeter, v_soft));
90ASSYM(V_INTR, offsetof(struct vmmeter, v_intr));
91
92ASSYM(TD_PCB, offsetof(struct thread, td_pcb));

--- 31 unchanged lines hidden ---