Attention is currently required from: osmith.
1 comment:
File src/osmo-bsc/paging.c:
Patch Set #2, Line 671: GSM51_MFRAME_DURATION_us
is dividing GSM51_MFRAME_DURATION_us by n_pag_blocks intentional?
Yes. we can send n_pag_block requests every GSM51_MFRAME_DURATION_us microseconds, so we do the following relation:
npag_block/GSM51_MFRAME_DURATION_us = 1/time_us;
time_us = 1*GSM51_MFRAME_DURATION_us/npag_block;
That means we can send 1 paging req every GSM51_MFRAME_DURATION_us/n_pag_block.
The (n_pag_blocks - 1) part is to do the integer ceiling of the resulting division.
To view, visit change 28002. To unsubscribe, or for help writing mail filters, visit settings.