> +/** > + * struct lp > + * @flag: TCP-LP state flag > + * @sowd: smoothed OWD << 3 > + * @owd_min: min OWD > + * @owd_max: max OWD > + * @owd_max_rsv: resrved max owd > + * @RHZ: estimated remote HZ > + * @remote_ref_time: remote reference time > + * @local_ref_time: local reference time > + * @last_drop: time for last active drop > + * @inference: current inference > + * > + * TCP-LP's private struct. > + * We get the idea from original TCP-LP implementation where only left those > we > + * found are really useful. > + */ > +struct lp { > + u32 flag; > + u32 sowd; > + u32 owd_min; > + u32 owd_max; > + u32 owd_max_rsv; > + u32 RHZ; > + u32 remote_ref_time; > + u32 local_ref_time; > + u32 last_drop; > + u32 inference; > +};
It is best to keep structure element names lower case. s/RHZ/rhz/ or use remote_hz - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html