| > | > static inline void ccid3_hc_rx_update_s(struct ccid3_hc_rx_sock *hcrx, int len) | > | > { | > | > if (likely(len > 0)) /* don't update on empty packets (e.g. ACKs) */ | > | > hcrx->ccid3hcrx_s = tfrc_ewma(hcrx->ccid3hcrx_s, len, 9); | > | > } | > | | > | And we also just do test for len > 0 in update_s, that looks like | > | also excessive, no? | > Hm, I think we need to make it robust against API bugs and/or zero-sized | > data packets. The check `len > 0' may seem redundant but it catches such | > a condition. For a moving average an accidental zero value will have | > quite an impact on the overall value. In CCID3 it is | > | > x_new = 0.9 * x_old + 0.1 * len | > | > So if len is accidentally 0 where it should not be, then each time the | > moving average is reduced to 90%. | | So we must make it a BUG_ON, not something that is to be always present. | I think it should be a warning condition since it can be triggered when the remote party sends zero-sized packets. It may be good to log this into the syslog to warn about possibly misbehaving apps/peers/remote stacks.
| > As a comparison - the entire patch set took about a full month to do. | > But that meant I am reasonably sure the algorithm is sound and can cope | > with problematic conditions. | | And from what I saw so far that is my impression too, if you look at | what I'm doing it is: | | 1. go thru the whole patch trying to understand hunk by hunk You are doing a great job - in particular as it really is a lot of material. | 2. do consistency changes (add namespace prefixes) | 3. reorganize the code to look more like what is already there, we | both have different backgrounds and tastes about how code should | be written, so its only normal that if we want to keep the code | consistent, and I want that, I jump into things I think should be | "reworded", while trying to keep the algorithm expressed by you. | Agree, that is not always easy to get right. I try to stick as close as possible to existing conventions but of course that is my interpretation, so I am already anticipating such changes/comments here. | think about further automatization on regression testing. | If it is of any use, some scripts and setups are at the bottom of the page at http://www.erg.abdn.ac.uk/users/gerrit/dccp/testing_dccp/ - To unsubscribe from this list: send the line "unsubscribe dccp" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html