Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54663
b: refs/heads/master
c: e729aa1
h: refs/heads/master
i:
  54661: be1bda0
  54659: f3ae10b
  54655: 96fa050
v: v3
  • Loading branch information
Ravikiran G Thirumalai authored and Linus Torvalds committed May 8, 2007
1 parent 9c41533 commit cd9d2b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 428e6ce023c5890cfecc8ad10335da3f28dbf893
refs/heads/master: e729aa16b168fb202d1a20f936028cb7c2a0278d
4 changes: 1 addition & 3 deletions trunk/include/linux/irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ struct irq_chip {
* @dir: /proc/irq/ procfs entry
* @affinity_entry: /proc/irq/smp_affinity procfs entry on SMP
* @name: flow handler name for /proc/interrupts output
*
* Pad this out to 32 bytes for cache and indexing reasons.
*/
struct irq_desc {
irq_flow_handler_t handle_irq;
Expand All @@ -175,7 +173,7 @@ struct irq_desc {
struct proc_dir_entry *dir;
#endif
const char *name;
} ____cacheline_aligned;
} ____cacheline_internodealigned_in_smp;

extern struct irq_desc irq_desc[NR_IRQS];

Expand Down
2 changes: 1 addition & 1 deletion trunk/kernel/irq/handle.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ handle_bad_irq(unsigned int irq, struct irq_desc *desc)
*
* Controller mappings for all interrupt sources:
*/
struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned = {
struct irq_desc irq_desc[NR_IRQS] __cacheline_aligned_in_smp = {
[0 ... NR_IRQS-1] = {
.status = IRQ_DISABLED,
.chip = &no_irq_chip,
Expand Down

0 comments on commit cd9d2b9

Please sign in to comment.