Page MenuHomeFreeBSD

riscv: small counter(9) improvements
ClosedPublic

Authored by mhorne on Dec 10 2020, 3:17 PM.
Tags
None
Referenced Files
Unknown Object (File)
Nov 18 2023, 12:32 PM
Unknown Object (File)
Sep 1 2023, 1:27 AM
Unknown Object (File)
Sep 1 2023, 1:25 AM
Unknown Object (File)
Sep 1 2023, 1:23 AM
Unknown Object (File)
Sep 1 2023, 1:17 AM
Unknown Object (File)
Jun 16 2023, 3:33 AM
Unknown Object (File)
Jun 3 2023, 8:21 AM
Unknown Object (File)
Apr 2 2023, 5:46 AM
Subscribers

Details

Summary
  • Prefer atomics to the critical section.
  • Use CPU_FOREACH to skip absent CPUs

Seems that a nearly-identical change was made for arm64 in r313345.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

To be clear, the main motivation here and in r313345 is to ensure that zeroing is reliable? In the old version of this diff it is not, per the XXX comment, but neither the CR description or the commit log message for r313345 mention this explicitly, so maybe I'm missing something else.

This revision is now accepted and ready to land.Dec 10 2020, 3:25 PM

To be clear, the main motivation here and in r313345 is to ensure that zeroing is reliable? In the old version of this diff it is not, per the XXX comment, but neither the CR description or the commit log message for r313345 mention this explicitly, so maybe I'm missing something else.

Presumably you are asking for the exact meaning behind the XXXKIB comment?

Could you explain for me what makes the existing code unreliable for zeroing? It's not obvious to me why the critical section was not enough to protect the increment.

To be clear, the main motivation here and in r313345 is to ensure that zeroing is reliable? In the old version of this diff it is not, per the XXX comment, but neither the CR description or the commit log message for r313345 mention this explicitly, so maybe I'm missing something else.

Presumably you are asking for the exact meaning behind the XXXKIB comment?

Could you explain for me what makes the existing code unreliable for zeroing? It's not obvious to me why the critical section was not enough to protect the increment.

counter_u64_zero_inline() works by raising an interrupt on each CPU; the interrupt handler calls counter_u64_zero_one_cpu() to clear the counter for that CPU.

In the old version of the diff this may fail to work because counter_u64_add() is not atomic with respect to interrupts. It loads the value into a register, modifies it, and stores the result. If the value is zeroed between the load and store, it will get reverted when the interrupt finishes and the interrupted thread continues running. I believe this is what the XXXKIB comment is stating.

counter_u64_zero_inline() works by raising an interrupt on each CPU; the interrupt handler calls counter_u64_zero_one_cpu() to clear the counter for that CPU.

In the old version of the diff this may fail to work because counter_u64_add() is not atomic with respect to interrupts. It loads the value into a register, modifies it, and stores the result. If the value is zeroed between the load and store, it will get reverted when the interrupt finishes and the interrupted thread continues running. I believe this is what the XXXKIB comment is stating.

Thanks, that makes sense. counter_u64_zero_one being called via IPI is the detail I was forgetting. I can include a mention about the comment in the final commit message.

sys/riscv/include/counter.h
65 ↗(On Diff #80519)

Most other machine/counter.h headers do this. Any reason not to use zpcpu_get() instead?

sys/riscv/include/counter.h
65 ↗(On Diff #80519)

I can't see a reason not use use zpcpu_get().

This revision was automatically updated to reflect the committed changes.