(Partially) fix type sizes and includes for RSS kernels
to compile agian. For as long as we use netisr CPU defines
we cannot use uin16_t. tcp_hpts.c and all related header
files however do that everywhere. This needs to be cleaned
up and fixed still.
Details
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
No Lint Coverage - Unit
No Test Coverage - Build Status
Buildable 29444 Build 27321: arc lint + arc unit
Event Timeline
sys/netinet/tcp_hpts.c | ||
---|---|---|
1176 | I am aware that there is some whitspace noise in here as well... |
sys/netinet/tcp_hpts.c | ||
---|---|---|
1158 | should this also be u_int? |
sys/netinet/tcp_hpts.c | ||
---|---|---|
1158 | Yes in theory and in a lot more places that will be on the trail of all this. That's why I mentioned that it needs to be cleaned up. |
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | The result is stored in a uint16_t value, so I'm not sure this change is a good idea as it will just silently truncate. I think instead you want to do something where you KASSERT that the value is actually not larger than UINT16_MAX and have the function still return uint16_t. You probably want to do something similar in the hpts code. The reason for the uint16_t is to fit more bits into a single cache line, and FreeBSD doesn't run on any systems where the number of CPUs even remotely approach 2^16. |
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | This is not true; the result is stored in tls->wq_index = ktls_get_cpu(so); which I is defined here as u_int: sys/sys/ktls.h: u_int wq_index; The hpts code is a mess and probably not consistent in a couple of places. I am not going near it beyond making it compile. Maybe the NETISR defines should not be re-used or we should re-define them then? I think the original "int" came from sys/sys/smp.h (mp_maxid et al) and related and sys/sys/pcpu.h: u_int pc_cpuid; /* This cpu number */. |
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | Huh, so it is. I think this is ok. ktls_cpuid_lookup[] is probably packed this way for the cache reason (it was that way when I first got the code from Netflix), though it's not clear to me that it matters, but I think your change as is is fine for KTLS. I can't speak to the hpts bits. |
Can someone look at the hpts bits please? I know they are not as straight forward as is the ktls case.
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | It was just cut-and-pasted from hpts |
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | Ah, I'd actually prefer to make it an array of u_ints if that is ok with you then. |
sys/kern/uipc_ktls.c | ||
---|---|---|
312 | The reason it was a uint16_t is that I was trying to fit as much as possible in a cache line, as you state. And like you |
I am re-opening this again as HPTS still needs fixing @rrs . See https://reviews.freebsd.org/D23726?id=68452 for the original diff.