|
@@ -94,7 +94,6 @@ int tfrc_tx_hist_add(struct tfrc_tx_hist_entry **headp, u64 seqno)
|
|
*headp = entry;
|
|
*headp = entry;
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_tx_hist_add);
|
|
|
|
|
|
|
|
void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp)
|
|
void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp)
|
|
{
|
|
{
|
|
@@ -109,7 +108,6 @@ void tfrc_tx_hist_purge(struct tfrc_tx_hist_entry **headp)
|
|
|
|
|
|
*headp = NULL;
|
|
*headp = NULL;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_tx_hist_purge);
|
|
|
|
|
|
|
|
u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno,
|
|
u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno,
|
|
const ktime_t now)
|
|
const ktime_t now)
|
|
@@ -127,7 +125,6 @@ u32 tfrc_tx_hist_rtt(struct tfrc_tx_hist_entry *head, const u64 seqno,
|
|
|
|
|
|
return rtt;
|
|
return rtt;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_tx_hist_rtt);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -172,7 +169,6 @@ void tfrc_rx_hist_add_packet(struct tfrc_rx_hist *h,
|
|
|
|
|
|
tfrc_rx_hist_entry_from_skb(entry, skb, ndp);
|
|
tfrc_rx_hist_entry_from_skb(entry, skb, ndp);
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_hist_add_packet);
|
|
|
|
|
|
|
|
/* has the packet contained in skb been seen before? */
|
|
/* has the packet contained in skb been seen before? */
|
|
int tfrc_rx_hist_duplicate(struct tfrc_rx_hist *h, struct sk_buff *skb)
|
|
int tfrc_rx_hist_duplicate(struct tfrc_rx_hist *h, struct sk_buff *skb)
|
|
@@ -189,7 +185,6 @@ int tfrc_rx_hist_duplicate(struct tfrc_rx_hist *h, struct sk_buff *skb)
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_hist_duplicate);
|
|
|
|
|
|
|
|
static void tfrc_rx_hist_swap(struct tfrc_rx_hist *h, const u8 a, const u8 b)
|
|
static void tfrc_rx_hist_swap(struct tfrc_rx_hist *h, const u8 a, const u8 b)
|
|
{
|
|
{
|
|
@@ -390,7 +385,6 @@ int tfrc_rx_handle_loss(struct tfrc_rx_hist *h,
|
|
}
|
|
}
|
|
return is_new_loss;
|
|
return is_new_loss;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_handle_loss);
|
|
|
|
|
|
|
|
int tfrc_rx_hist_alloc(struct tfrc_rx_hist *h)
|
|
int tfrc_rx_hist_alloc(struct tfrc_rx_hist *h)
|
|
{
|
|
{
|
|
@@ -412,7 +406,6 @@ out_free:
|
|
}
|
|
}
|
|
return -ENOBUFS;
|
|
return -ENOBUFS;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_hist_alloc);
|
|
|
|
|
|
|
|
void tfrc_rx_hist_purge(struct tfrc_rx_hist *h)
|
|
void tfrc_rx_hist_purge(struct tfrc_rx_hist *h)
|
|
{
|
|
{
|
|
@@ -424,7 +417,6 @@ void tfrc_rx_hist_purge(struct tfrc_rx_hist *h)
|
|
h->ring[i] = NULL;
|
|
h->ring[i] = NULL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_hist_purge);
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
* tfrc_rx_hist_rtt_last_s - reference entry to compute RTT samples against
|
|
* tfrc_rx_hist_rtt_last_s - reference entry to compute RTT samples against
|
|
@@ -495,4 +487,3 @@ keep_ref_for_next_time:
|
|
|
|
|
|
return sample;
|
|
return sample;
|
|
}
|
|
}
|
|
-EXPORT_SYMBOL_GPL(tfrc_rx_hist_sample_rtt);
|
|
|