mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
x86/irq: Get rid of the 'first_system_vector' indirection bogosity
This variable is beyond pointless. Nothing allocates a vector via alloc_gate() below FIRST_SYSTEM_VECTOR. So nothing can change first_system_vector. If there is a need for a gate below FIRST_SYSTEM_VECTOR then it can be added to the vector defines and FIRST_SYSTEM_VECTOR can be adjusted accordingly. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andy Lutomirski <luto@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Steven Rostedt <rostedt@goodmis.org> Link: http://lkml.kernel.org/r/20170828064956.357109735@linutronix.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
fa4ab5774d
commit
05161b9cbe
5 changed files with 5 additions and 11 deletions
|
@ -429,7 +429,7 @@ int check_irq_vectors_for_cpu_disable(void)
|
|||
* this w/o holding vector_lock.
|
||||
*/
|
||||
for (vector = FIRST_EXTERNAL_VECTOR;
|
||||
vector < first_system_vector; vector++) {
|
||||
vector < FIRST_SYSTEM_VECTOR; vector++) {
|
||||
if (!test_bit(vector, used_vectors) &&
|
||||
IS_ERR_OR_NULL(per_cpu(vector_irq, cpu)[vector])) {
|
||||
if (++count == this_count)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue