Dynamically size buffers in ggatec. Instead of static size on the stack.
Add flush support.
Details
- Reviewers
asomers peterj - Group Reviewers
Contributor Reviews (src) - Commits
- rG2af3758a3294: Various fixes for ggatec and ggated
rG6226477a462f: Various fixes for ggatec and ggated
Tested it on my machine. I'm still on 12-stable.
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
155 | don't need this anymore now that recv thread will resize its buffer. |
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
117 | there's diff context missing here. |
In general, this is a definite improvement over fixed size buffers (that are actually liable to subtle overruns).
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
97 | Why ssize_t? The value can never be negative and it's only used to assign to an off_t. I would suggest this be size_t. | |
131 | I think this only warrants LOG_DEBUG, not LOG_NOTICE. Particularly with ZFS, I/Os can be arbitrary sized so it's quite normal for them to exceed MAXPHYS. That's likely to make this noisy, unless there's a particularly write early on. | |
132 | style(9) requires that all variable declarations come at the top of the function. | |
208 | As per the comment above, I don't think ssize_t is the most appropriate type here. | |
245 | Variable declarations should be at the top of the function. |
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
97 | copy pasta, size_t is good. | |
131 | Yep noticed quite a bit of log spam myself. | |
132 | If we ever update style I think that'd be a good rule to get rid of... i'm a big fan of declare & define & init on first use, esp since it has safety implications. |
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
208 | ah, ggio.gctl_length is off_t and at line 244 we have a comparison to buf_capacity. |
sbin/ggate/ggated/ggated.c | ||
---|---|---|
753 | this seems prudent. |
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
104 | it being maxphys is kinda a red herring, just need a (any) value for the initial buffer size. |
sbin/ggate/ggatec/ggatec.c | ||
---|---|---|
104 | Yes, it should use the runtime value rather than the compile-time one. It doesn't need to adapt if maxphys changes after ggatec starts, however. |