User Details
- User Since
- Feb 4 2016, 4:45 PM (516 w, 1 d)
Fri, Dec 19
Use sbuf_new_for_sysctl() as suggested by Mark.
Thu, Dec 18
The example should follow style.9 as suggested by Mark.
Wed, Dec 17
Thu, Dec 11
How does this algorithm relate to the reordering tolerance of RACK defined by step 4 of RFC 8985?
Thu, Dec 4
Thu, Nov 27
Nov 24 2025
Nov 23 2025
Would it make sense to replace the code with a KASSERT, that ensures that the inp_flowtype is not M_HASHTYPE_NONE on non-listening socket.
Nov 21 2025
Please rebase to main.
Nov 17 2025
Nov 12 2025
Nov 10 2025
Nov 9 2025
Nov 7 2025
Use the correct sequence sequence of check and action.
Nov 6 2025
Only improve comments.
Nov 5 2025
Nov 4 2025
The third case is only a drop, if we have allocated an entry. If we are using syncookies, we also increment the counter if the syncache_response() call failed.
The suggested fourth case is in its nature different to the first three.
This depends on the semantic of the counter:
- if the semantic is "reply is dropped", it is the same and it should be incremented.
- if the semantic is "syncache entry is dropped", it is not the same and the third pattern should be changed to increment the counter only if we are actually calling syncache_free().
Nov 3 2025
Use the correct variable: inp->inp_flags2.
Nov 2 2025
This was committed in f3bba8cd62f2.
Oct 31 2025
Have a look at D53507 and D53510 which does this in the networking related files.
remove one flag (INP_ORIGDSTADDR), which is actually a flag used in inp_flags2 and not in inp_flags.
Don't we want to print inp_flags2 as well? BTW, it seems very easy to use the wrong flag field. It should at least be called INP2_ORIGDSTADDR or something like that.
Yes, we want to print inp_flags2, too. This will be a separate change. And I agree with your proposed name change. There is something like INP_2PCP_SET, but I would prefer something like INP2_PCP_SET or INP_2_PCP_SET. Any preference?
Use tabs consistently.
