Page MenuHomeFreeBSD

sesutil: don't malloc in a tight loop
ClosedPublic

Authored by asomers on Feb 9 2023, 10:24 PM.
Tags
None
Referenced Files
F102793284: D38473.id.diff
Sun, Nov 17, 6:53 AM
Unknown Object (File)
Sat, Nov 16, 6:39 AM
Unknown Object (File)
Oct 2 2024, 8:33 AM
Unknown Object (File)
Sep 30 2024, 1:43 PM
Unknown Object (File)
Sep 30 2024, 1:32 PM
Unknown Object (File)
Sep 30 2024, 1:32 PM
Unknown Object (File)
Sep 27 2024, 5:44 PM
Unknown Object (File)
Sep 16 2024, 10:27 PM
Subscribers

Details

Summary

Reported by: mav
MFC after: 1 week
Sponsored by: Axcient

Test Plan

Ran all subcommands with valgrind

Diff Detail

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

Event Timeline

I have no objections, just some comments to polish.

usr.sbin/sesutil/sesutil.c
496–497

You've left this assignment here, but removed elm_names_size assignment below. Moving this up would look cleaner. I was thinking about some constant, but if variable assignment would be moved up and passed as a variable to malloc(), it would be less needed.

This revision is now accepted and ready to land.Feb 13 2023, 2:48 PM
usr.sbin/sesutil/sesutil.c
496–497

Actually, elm_desc_len is a R/W argument to ENCIOC_GETELMDESC. On entry, it indicates the space available in elm_devnames. On return, it indicates the size of the string, which is not nul-terminated. That's why I have to set it here instead of next to the calloc.

This revision was automatically updated to reflect the committed changes.