~ressu/+junk/xen-debian

« back to all changes in this revision

Viewing changes to xen/drivers/acpi/tables.c

  • Committer: sami at haahtinen
  • Author(s): Bastian Blank
  • Date: 2011-03-17 14:12:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: sami@haahtinen.name-20110317141245-owgqox0l0p3g5857
Tags: 4.1.0~rc6-1
* New upstream release candidate.
* Build documentation using pdflatex.
* Use python 2.6. (closes: #596545)
* Fix lintian override.
* Install new tools: xl, xenpaging.
* Enable blktap2.
  - Use own md5 implementation.
  - Fix includes.
  - Fix linking of blktap2 binaries.
  - Remove optimization setting.
* Temporarily disable hvmloader, wants to download ipxe.
* Remove xenstored pid check from xl.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
                }
64
64
                break;
65
65
 
 
66
        case ACPI_MADT_TYPE_LOCAL_X2APIC:
 
67
                {
 
68
                        struct acpi_madt_local_x2apic *p =
 
69
                            (struct acpi_madt_local_x2apic *)header;
 
70
                        printk(KERN_INFO PREFIX
 
71
                               "X2APIC (apic_id[0x%02x] uid[0x%02x] %s)\n",
 
72
                               p->local_apic_id, p->uid,
 
73
                               (p->lapic_flags & ACPI_MADT_ENABLED) ?
 
74
                               "enabled" : "disabled");
 
75
                }
 
76
                break;
 
77
 
66
78
        case ACPI_MADT_TYPE_IO_APIC:
67
79
                {
68
80
                        struct acpi_madt_io_apic *p =
117
129
                }
118
130
                break;
119
131
 
 
132
        case ACPI_MADT_TYPE_LOCAL_X2APIC_NMI:
 
133
                {
 
134
                        u16 polarity, trigger;
 
135
                        struct acpi_madt_local_x2apic_nmi *p =
 
136
                            (struct acpi_madt_local_x2apic_nmi *)header;
 
137
 
 
138
                        polarity = p->inti_flags & ACPI_MADT_POLARITY_MASK;
 
139
                        trigger = (p->inti_flags & ACPI_MADT_TRIGGER_MASK) >> 2;
 
140
 
 
141
                        printk(KERN_INFO PREFIX
 
142
                               "X2APIC_NMI (uid[0x%02x] %s %s lint[0x%x])\n",
 
143
                               p->uid,
 
144
                               mps_inti_flags_polarity[polarity],
 
145
                               mps_inti_flags_trigger[trigger],
 
146
                               p->lint);
 
147
                }
 
148
                break;
 
149
 
120
150
        case ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE:
121
151
                {
122
152
                        struct acpi_madt_local_apic_override *p =