blob: 115a68f20afe778cdf3552f2f87daf839b8c3ce4 [file] [log] [blame]
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +02001/* poll_controller.h
2 *
3 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
4 * Copyright (C) 2013 by Holger Hans Peter Freyther
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include <poll_controller.h>
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020024#include <bts.h>
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020025#include <tbf.h>
26
27PollController::PollController(BTS& bts)
28 : m_bts(bts)
29{}
30
31void PollController::expireTimedout(int frame_number)
32{
33 struct gprs_rlcmac_bts *bts = m_bts.bts_data();
34 struct gprs_rlcmac_tbf *tbf;
35 struct gprs_rlcmac_sba *sba, *sba2;
36 uint32_t elapsed;
37
38 /* check for poll timeout */
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020039 llist_for_each_entry(tbf, &bts->ul_tbfs, list) {
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020040 if (tbf->poll_state == GPRS_RLCMAC_POLL_SCHED) {
41 elapsed = (frame_number + 2715648 - tbf->poll_fn)
42 % 2715648;
43 if (elapsed >= 20 && elapsed < 2715400)
44 gprs_rlcmac_poll_timeout(bts, tbf);
45 }
46 }
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020047 llist_for_each_entry(tbf, &bts->dl_tbfs, list) {
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020048 if (tbf->poll_state == GPRS_RLCMAC_POLL_SCHED) {
49 elapsed = (frame_number + 2715648 - tbf->poll_fn)
50 % 2715648;
51 if (elapsed >= 20 && elapsed < 2715400)
52 gprs_rlcmac_poll_timeout(bts, tbf);
53 }
54 }
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020055 llist_for_each_entry_safe(sba, sba2, &m_bts.sba()->m_sbas, list) {
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020056 elapsed = (frame_number + 2715648 - sba->fn) % 2715648;
57 if (elapsed >= 20 && elapsed < 2715400) {
58 /* sba will be freed here */
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020059 m_bts.sba()->timeout(sba);
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020060 }
61 }
62
63}