Page MenuHomeFreeBSD

random(4): Correct a bare zero to the appropriate enum
ClosedPublic

Authored by cem on Sep 1 2018, 4:45 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Dec 31, 11:00 PM
Unknown Object (File)
Mon, Dec 30, 11:04 PM
Unknown Object (File)
Mon, Dec 30, 12:15 AM
Unknown Object (File)
Sat, Dec 28, 11:38 PM
Unknown Object (File)
Fri, Dec 27, 12:03 PM
Unknown Object (File)
Dec 23 2024, 2:27 PM
Unknown Object (File)
Nov 22 2024, 11:51 PM
Unknown Object (File)
Nov 14 2024, 7:41 PM
Subscribers

Details

Summary

The convention for updating hc_destination[] is to index with a
random_entropy_source. Zero happens to match RANDOM_CACHED, which is
correct for this source (early random data). Spell the zero value as the
enum name instead of the magic constant.

No functional change.

Diff Detail

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

Event Timeline

delphij added a subscriber: delphij.

Looks reasonable.

sys/dev/random/random_harvestq.c
421 ↗(On Diff #47555)

@markm -- Why is this explicit_bzero() done here in the loop instead of done below (e.g. line 423)?

This revision is now accepted and ready to land.Sep 1 2018, 5:54 AM
markm added inline comments.
sys/dev/random/random_harvestq.c
421 ↗(On Diff #47555)

Over-paranoia, I guess. I wouldn't object to it moving.

sys/dev/random/random_harvestq.c
421 ↗(On Diff #47555)

One other caveat is that random_harvestq_fast_process_event -> random_fortuna_process_event() also explicit_bzeros the event in the loop already.

This revision was automatically updated to reflect the committed changes.