mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
sparc64: Make proc_id signed.
So that when it is unset, ie. '-1', userspace can see it properly. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
455adb3174
commit
b3e1eb8e7a
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ typedef struct {
|
||||||
unsigned short sock_id; /* physical package */
|
unsigned short sock_id; /* physical package */
|
||||||
unsigned short core_id;
|
unsigned short core_id;
|
||||||
unsigned short max_cache_id; /* groupings of highest shared cache */
|
unsigned short max_cache_id; /* groupings of highest shared cache */
|
||||||
unsigned short proc_id; /* strand (aka HW thread) id */
|
signed short proc_id; /* strand (aka HW thread) id */
|
||||||
} cpuinfo_sparc;
|
} cpuinfo_sparc;
|
||||||
|
|
||||||
DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
|
DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue