Attention is currently required from: fixeria.
2 comments:
File src/osmo-bsc/chan_alloc.c:
Patch Set #1, Line 47: struct load_counter *ll = &trx->lchan_load;
I wonder what ll means here.
Patch Set #1, Line 85: ll->total++;
You can simply do:
ll->total += pl->total;
ll->used += pl->used;
after the loop, instead of doing +1 N times.
To view, visit change 28325. To unsubscribe, or for help writing mail filters, visit settings.