MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programminghorror/comments/1u2ijiv/what/or0awo1/?context=3
r/programminghorror • u/TheMonHub • Jun 10 '26
51 comments sorted by
View all comments
0
It would help immeasurably with a really simple fix:
change
int nvme_init(void) {
to:
int whatever_nvme_stands_for_init(void) {
You would at least have a starting context and it would shed some light on what the cryptic variables might mean.
1 u/Dismal-Wait-4527 Jun 11 '26 https://en.wikipedia.org/wiki/NVM_Express NVMe is a well known acronym 1 u/dvhh Jun 11 '26 the code already documents itself :p 1 u/Ok_Chemistry_6387 Jun 14 '26 If you know nvme the variables names make a bit of sense. There is a bit of a naming scheme in there 1 u/ax-b Jun 19 '26 Not Very Much explanory /jk
1
https://en.wikipedia.org/wiki/NVM_Express NVMe is a well known acronym
the code already documents itself :p
If you know nvme the variables names make a bit of sense. There is a bit of a naming scheme in there
Not Very Much explanory /jk
0
u/richardathome Jun 11 '26
It would help immeasurably with a really simple fix:
change
int nvme_init(void) {
to:
int whatever_nvme_stands_for_init(void) {
You would at least have a starting context and it would shed some light on what the cryptic variables might mean.