Page MenuHomeFreeBSD

newbus: Remove redundant check for 0
ClosedPublic

Authored by imp on Mar 7 2024, 7:15 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Oct 20, 9:39 PM
Unknown Object (File)
Sun, Oct 20, 9:39 PM
Unknown Object (File)
Sun, Oct 20, 9:38 PM
Unknown Object (File)
Sun, Oct 20, 9:38 PM
Unknown Object (File)
Sun, Oct 20, 9:09 PM
Unknown Object (File)
Wed, Oct 16, 3:19 AM
Unknown Object (File)
Wed, Oct 9, 1:03 AM
Unknown Object (File)
Oct 3 2024, 9:27 PM
Subscribers

Details

Summary

We already checked to see if the return code is 0 above. This code is
redundant.

Sponsored by: Netflix

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

imp requested review of this revision.Mar 7 2024, 7:15 PM

actually fix the redundancy

sys/kern/subr_bus.c
1670

I suppose this line could also be dropped.

1751

Maybe we finally need to implement strdup above.

jhb added inline comments.
sys/kern/subr_bus.c
1670

Yes, you can drop pri == 0

1671

out is ok, but you could also use something like exact_match or some other name for the label.

1751

Lots of description strings are constants rather than dynamically allocated. I don't think it would matter if we started always dynamically allocating them though.

This revision is now accepted and ready to land.Mar 13 2024, 8:40 PM
This revision was automatically updated to reflect the committed changes.