Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 727657e6 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

x86/apic: Sanitize return value of apic.set_apic_id()



The set_apic_id() callback returns an unsigned long value which is handed
in to apic_write() as the value argument u32.

Adjust the return value so it returns u32 right away.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Tested-by: default avatarJuergen Gross <jgross@suse.com>
Tested-by: default avatarYu Chen <yu.c.chen@intel.com>
Acked-by: default avatarJuergen Gross <jgross@suse.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Cc: Alok Kataria <akataria@vmware.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Rui Zhang <rui.zhang@intel.com>
Cc: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Len Brown <lenb@kernel.org>
Link: https://lkml.kernel.org/r/20170913213153.437208268@linutronix.de
parent 981c2eac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -305,7 +305,7 @@ struct apic {

	unsigned int (*get_apic_id)(unsigned long x);
	/* Can't be NULL on 64-bit */
	unsigned long (*set_apic_id)(unsigned int id);
	u32 (*set_apic_id)(unsigned int id);

	int (*cpu_mask_to_apicid)(const struct cpumask *cpumask,
				  struct irq_data *irqdata,
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ static unsigned int flat_get_apic_id(unsigned long x)
	return (x >> 24) & 0xFF;
}

static unsigned long set_apic_id(unsigned int id)
static u32 set_apic_id(unsigned int id)
{
	return (id & 0xFF) << 24;
}
+2 −2
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ static unsigned int numachip1_get_apic_id(unsigned long x)
	return id;
}

static unsigned long numachip1_set_apic_id(unsigned int id)
static u32 numachip1_set_apic_id(unsigned int id)
{
	return (id & 0xff) << 24;
}
@@ -51,7 +51,7 @@ static unsigned int numachip2_get_apic_id(unsigned long x)
	return ((mcfg >> (28 - 8)) & 0xfff00) | (x >> 24);
}

static unsigned long numachip2_set_apic_id(unsigned int id)
static u32 numachip2_set_apic_id(unsigned int id)
{
	return id << 24;
}
+1 −1
Original line number Diff line number Diff line
@@ -4,6 +4,6 @@ int x2apic_apic_id_valid(int apicid);
int x2apic_apic_id_registered(void);
void __x2apic_send_IPI_dest(unsigned int apicid, int vector, unsigned int dest);
unsigned int x2apic_get_apic_id(unsigned long id);
unsigned long x2apic_set_apic_id(unsigned int id);
u32 x2apic_set_apic_id(unsigned int id);
int x2apic_phys_pkg_id(int initial_apicid, int index_msb);
void x2apic_send_IPI_self(int vector);
+1 −1
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ unsigned int x2apic_get_apic_id(unsigned long id)
	return id;
}

unsigned long x2apic_set_apic_id(unsigned int id)
u32 x2apic_set_apic_id(unsigned int id)
{
	return id;
}
Loading