Loading net/sched/act_api.c +2 −1 Original line number Diff line number Diff line Loading @@ -191,7 +191,8 @@ u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo) val = 1; } while (tcf_hash_lookup(val, hinfo)); return (*idx_gen = val); *idx_gen = val; return val; } EXPORT_SYMBOL(tcf_hash_new_index); Loading net/sched/sch_dsmark.c +1 −1 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ struct dsmark_qdisc_data { static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index) { return (index <= p->indices && index > 0); return index <= p->indices && index > 0; } /* ------------------------- Class/flow operations ------------------------- */ Loading Loading
net/sched/act_api.c +2 −1 Original line number Diff line number Diff line Loading @@ -191,7 +191,8 @@ u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo) val = 1; } while (tcf_hash_lookup(val, hinfo)); return (*idx_gen = val); *idx_gen = val; return val; } EXPORT_SYMBOL(tcf_hash_new_index); Loading
net/sched/sch_dsmark.c +1 −1 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ struct dsmark_qdisc_data { static inline int dsmark_valid_index(struct dsmark_qdisc_data *p, u16 index) { return (index <= p->indices && index > 0); return index <= p->indices && index > 0; } /* ------------------------- Class/flow operations ------------------------- */ Loading