Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38430
b: refs/heads/master
c: 23d0b8b
h: refs/heads/master
v: v3
  • Loading branch information
Eric W. Biederman authored and Linus Torvalds committed Oct 4, 2006
1 parent f3a2465 commit 9c67d5b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 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: 323a01c50832749d23664954f91df6fc43e73975
refs/heads/master: 23d0b8b053391afe15c9667d80de77ca88e18b8b
3 changes: 3 additions & 0 deletions trunk/include/asm-x86_64/hardirq.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
#include <asm/pda.h>
#include <asm/apic.h>

/* We can have at most NR_VECTORS irqs routed to a cpu at a time */
#define MAX_HARDIRQS_PER_CPU NR_VECTORS

#define __ARCH_IRQ_STAT 1

#define local_softirq_pending() read_pda(__softirq_pending)
Expand Down
7 changes: 6 additions & 1 deletion trunk/include/linux/hardirq.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@

#ifndef HARDIRQ_BITS
#define HARDIRQ_BITS 12

#ifndef MAX_HARDIRQS_PER_CPU
#define MAX_HARDIRQS_PER_CPU NR_IRQS
#endif

/*
* The hardirq mask has to be large enough to have space for potentially
* all IRQ sources in the system nesting on a single CPU.
*/
#if (1 << HARDIRQ_BITS) < NR_IRQS
#if (1 << HARDIRQ_BITS) < MAX_HARDIRQS_PER_CPU
# error HARDIRQ_BITS is too low!
#endif
#endif
Expand Down

0 comments on commit 9c67d5b

Please sign in to comment.