| .. | .. |
|---|
| 48 | 48 | struct list_head config_fields; |
|---|
| 49 | 49 | struct pci_saved_state *pci_saved_state; |
|---|
| 50 | 50 | unsigned int permissive:1; |
|---|
| 51 | + unsigned int allow_interrupt_control:1; |
|---|
| 51 | 52 | unsigned int warned_on_write:1; |
|---|
| 52 | 53 | unsigned int enable_intx:1; |
|---|
| 53 | 54 | unsigned int isr_on:1; /* Whether the IRQ handler is installed. */ |
|---|
| 54 | 55 | unsigned int ack_intr:1; /* .. and ACK-ing */ |
|---|
| 55 | 56 | unsigned long handled; |
|---|
| 56 | 57 | unsigned int irq; /* Saved in case device transitions to MSI/MSI-X */ |
|---|
| 57 | | - char irq_name[0]; /* xen-pcibk[000:04:00.0] */ |
|---|
| 58 | + char irq_name[]; /* xen-pcibk[000:04:00.0] */ |
|---|
| 58 | 59 | }; |
|---|
| 59 | 60 | |
|---|
| 60 | 61 | /* Used by XenBus and xen_pcibk_ops.c */ |
|---|
| .. | .. |
|---|
| 194 | 195 | |
|---|
| 195 | 196 | int xen_pcibk_xenbus_register(void); |
|---|
| 196 | 197 | void xen_pcibk_xenbus_unregister(void); |
|---|
| 197 | | - |
|---|
| 198 | | -extern int verbose_request; |
|---|
| 199 | 198 | #endif |
|---|
| 200 | 199 | |
|---|
| 201 | 200 | /* Handles shared IRQs that can to device domain and control domain. */ |
|---|