Symbol: cca_timer
drivers/infiniband/hw/hfi1/hfi.h
855
struct cca_timer cca_timer[OPA_MAX_SLS];
drivers/infiniband/hw/hfi1/init.c
1494
hrtimer_cancel(&ppd->cca_timer[i].hrtimer);
drivers/infiniband/hw/hfi1/init.c
509
u16 ccti = ppd->cca_timer[i].ccti;
drivers/infiniband/hw/hfi1/init.c
537
struct cca_timer *cca_timer;
drivers/infiniband/hw/hfi1/init.c
545
cca_timer = container_of(t, struct cca_timer, hrtimer);
drivers/infiniband/hw/hfi1/init.c
546
ppd = cca_timer->ppd;
drivers/infiniband/hw/hfi1/init.c
547
sl = cca_timer->sl;
drivers/infiniband/hw/hfi1/init.c
569
if (cca_timer->ccti > ccti_min) {
drivers/infiniband/hw/hfi1/init.c
570
cca_timer->ccti--;
drivers/infiniband/hw/hfi1/init.c
574
if (cca_timer->ccti > ccti_min) {
drivers/infiniband/hw/hfi1/init.c
638
ppd->cca_timer[i].ppd = ppd;
drivers/infiniband/hw/hfi1/init.c
639
ppd->cca_timer[i].sl = i;
drivers/infiniband/hw/hfi1/init.c
640
ppd->cca_timer[i].ccti = 0;
drivers/infiniband/hw/hfi1/init.c
641
hrtimer_setup(&ppd->cca_timer[i].hrtimer, cca_timer_fn, CLOCK_MONOTONIC,
drivers/infiniband/hw/hfi1/rc.c
2703
struct cca_timer *cca_timer;
drivers/infiniband/hw/hfi1/rc.c
2730
cca_timer = &ppd->cca_timer[sl];
drivers/infiniband/hw/hfi1/rc.c
2731
if (cca_timer->ccti < ccti_limit) {
drivers/infiniband/hw/hfi1/rc.c
2732
if (cca_timer->ccti + ccti_incr <= ccti_limit)
drivers/infiniband/hw/hfi1/rc.c
2733
cca_timer->ccti += ccti_incr;
drivers/infiniband/hw/hfi1/rc.c
2735
cca_timer->ccti = ccti_limit;
drivers/infiniband/hw/hfi1/rc.c
2739
ccti = cca_timer->ccti;
drivers/infiniband/hw/hfi1/rc.c
2741
if (!hrtimer_active(&cca_timer->hrtimer)) {
drivers/infiniband/hw/hfi1/rc.c
2745
hrtimer_start(&cca_timer->hrtimer, ns_to_ktime(nsec),