tbf: Use past-tense and call it created_ts

This commit is contained in:
Holger Hans Peter Freyther 2014-01-16 10:07:20 +01:00
parent b293043e2d
commit a004799699
2 changed files with 6 additions and 6 deletions

View File

@ -508,7 +508,7 @@ struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts,
if (!tbf)
return NULL;
tbf->m_create_ts = time(NULL);
tbf->m_created_ts = time(NULL);
tbf->bts = bts->bts;
tbf->direction = dir;
tbf->m_tfi = tfi;
@ -1765,7 +1765,7 @@ void tbf_print_vty_info(struct vty *vty, llist_head *ltbf)
tbf->imsi(), VTY_NEWLINE);
vty_out(vty, " created=%lu state=%08x 1st_TS=%d 1st_cTS=%d ctrl_TS=%d "
"MS_CLASS=%d%s",
tbf->create_ts(), tbf->state_flags, tbf->first_ts,
tbf->created_ts(), tbf->state_flags, tbf->first_ts,
tbf->first_common_ts, tbf->control_ts, tbf->ms_class,
VTY_NEWLINE);
vty_out(vty, " TS_alloc=");

View File

@ -138,7 +138,7 @@ struct gprs_rlcmac_tbf {
uint16_t sns() const;
time_t create_ts() const;
time_t created_ts() const;
/* attempt to make things a bit more fair */
void rotate_in_list();
@ -227,7 +227,7 @@ struct gprs_rlcmac_tbf {
uint32_t m_tlli;
uint8_t m_tlli_valid;
uint8_t m_tfi;
time_t m_create_ts;
time_t m_created_ts;
/* store IMSI for look-up and PCH retransmission */
char m_imsi[16];
@ -314,9 +314,9 @@ inline uint16_t gprs_rlcmac_tbf::sns() const
const char *tbf_name(gprs_rlcmac_tbf *tbf);
inline time_t gprs_rlcmac_tbf::create_ts() const
inline time_t gprs_rlcmac_tbf::created_ts() const
{
return m_create_ts;
return m_created_ts;
}
#endif