Page MenuHomeFreeBSD

goem: Add counts for enomem and pausing
ClosedPublic

Authored by imp on May 22 2024, 11:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jul 1, 1:51 AM
Unknown Object (File)
Sun, Jun 28, 6:56 AM
Unknown Object (File)
Wed, Jun 24, 9:54 PM
Unknown Object (File)
Mon, Jun 22, 9:37 PM
Unknown Object (File)
Sun, Jun 21, 9:39 PM
Unknown Object (File)
Sun, Jun 14, 9:21 AM
Unknown Object (File)
May 26 2026, 4:41 AM
Unknown Object (File)
May 17 2026, 1:53 PM
Subscribers
None

Details

Summary

Add counts for the number of requests that complete with the ENOMEM as
kern.geom.nomem_count and the number of times we pause to let the system
recover kern.geom.pause_count.

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.May 22 2024, 11:08 PM
imp created this revision.
sys/geom/geom_io.c
78

u_long?

836

The min() is useless, zero count is converted to 1 tick by pause_sbt()

837

Why is this increment non-atomic?

sys/geom/geom_io.c
78

This, or maybe counter_u64_t?

836

I'll do a followup commit.

837

g_down is one thread, no? I could use counters here if I'm wrong about that.

sys/geom/geom_io.c
78

These events are exceptional. Counter64 adds non-insignificant memory overhead and fetch complications there, without benefits IMO.

837

ok, the perhaps add a single-line hint about this, please

update with kib's review suggestions.

This revision is now accepted and ready to land.May 24 2024, 7:25 AM

There is a typo in the review title, goem -> geom

This revision was automatically updated to reflect the committed changes.