|
@@ -159,9 +159,7 @@ static int caif_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
|
|
|
|
|
|
if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >=
|
|
|
(unsigned)sk->sk_rcvbuf && rx_flow_is_on(cf_sk)) {
|
|
|
- trace_printk("CAIF: %s(): "
|
|
|
- "sending flow OFF (queue len = %d %d)\n",
|
|
|
- __func__,
|
|
|
+ pr_debug("sending flow OFF (queue len = %d %d)\n",
|
|
|
atomic_read(&cf_sk->sk.sk_rmem_alloc),
|
|
|
sk_rcvbuf_lowwater(cf_sk));
|
|
|
set_rx_flow_off(cf_sk);
|
|
@@ -174,9 +172,7 @@ static int caif_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
|
|
|
return err;
|
|
|
if (!sk_rmem_schedule(sk, skb->truesize) && rx_flow_is_on(cf_sk)) {
|
|
|
set_rx_flow_off(cf_sk);
|
|
|
- trace_printk("CAIF: %s(): "
|
|
|
- "sending flow OFF due to rmem_schedule\n",
|
|
|
- __func__);
|
|
|
+ pr_debug("sending flow OFF due to rmem_schedule\n");
|
|
|
dbfs_atomic_inc(&cnt.num_rx_flow_off);
|
|
|
caif_flow_ctrl(sk, CAIF_MODEMCMD_FLOW_OFF_REQ);
|
|
|
}
|