~ubuntu-branches/debian/wheezy/linux-2.6/wheezy

« back to all changes in this revision

Viewing changes to arch/m68k/kernel/asm-offsets.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings, Ben Hutchings, Aurelien Jarno, Martin Michlmayr
  • Date: 2011-04-06 13:53:30 UTC
  • mfrom: (43.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110406135330-wjufxhd0tvn3zx4z
Tags: 2.6.38-3
[ Ben Hutchings ]
* [ppc64] Add to linux-tools package architectures (Closes: #620124)
* [amd64] Save cr4 to mmu_cr4_features at boot time (Closes: #620284)
* appletalk: Fix bugs introduced when removing use of BKL
* ALSA: Fix yet another race in disconnection
* cciss: Fix lost command issue
* ath9k: Fix kernel panic in AR2427
* ses: Avoid kernel panic when lun 0 is not mapped
* PCI/ACPI: Report ASPM support to BIOS if not disabled from command line

[ Aurelien Jarno ]
* rtlwifi: fix build when PCI is not enabled.

[ Martin Michlmayr ]
* rtlwifi: Eliminate udelay calls with too large values (Closes: #620204)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
int main(void)
23
23
{
24
24
        /* offsets into the task struct */
25
 
        DEFINE(TASK_STATE, offsetof(struct task_struct, state));
26
 
        DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags));
27
 
        DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace));
28
25
        DEFINE(TASK_THREAD, offsetof(struct task_struct, thread));
29
26
        DEFINE(TASK_INFO, offsetof(struct task_struct, thread.info));
30
27
        DEFINE(TASK_MM, offsetof(struct task_struct, mm));
31
 
        DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm));
32
28
#ifdef CONFIG_MMU
33
29
        DEFINE(TASK_TINFO, offsetof(struct task_struct, thread.info));
34
30
#endif
64
60
        /* bitfields are a bit difficult */
65
61
        DEFINE(PT_OFF_FORMATVEC, offsetof(struct pt_regs, pc) + 4);
66
62
 
67
 
        /* offsets into the irq_handler struct */
68
 
        DEFINE(IRQ_HANDLER, offsetof(struct irq_node, handler));
69
 
        DEFINE(IRQ_DEVID, offsetof(struct irq_node, dev_id));
70
 
        DEFINE(IRQ_NEXT, offsetof(struct irq_node, next));
71
 
 
72
 
        /* offsets into the kernel_stat struct */
73
 
        DEFINE(STAT_IRQ, offsetof(struct kernel_stat, irqs));
74
 
 
75
63
        /* offsets into the irq_cpustat_t struct */
76
64
        DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending));
77
65