Page MenuHomeFreeBSD

goem: Add counts for enomem and pausing
ClosedPublic

Authored by imp on Wed, May 22, 11:08 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, May 24, 6:50 PM
Unknown Object (File)
Fri, May 24, 6:14 PM
Unknown Object (File)
Fri, May 24, 6:13 PM
Unknown Object (File)
Fri, May 24, 4:27 PM
Unknown Object (File)
Fri, May 24, 11:15 AM
Unknown Object (File)
Fri, May 24, 10:28 AM
Unknown Object (File)
Thu, May 23, 8:48 AM
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.Wed, May 22, 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.Fri, May 24, 7:25 AM

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

This revision was automatically updated to reflect the committed changes.