Lines Matching defs:last_frames
74 /* use of last_frames[index].flags */
118 void *last_frames;
508 * received data stored in op->last_frames[]
514 struct canfd_frame *lcf = op->last_frames + op->cfsiz * index;
565 if ((op->flags & RX_ANNOUNCE_RESUME) && op->last_frames) {
567 memset(op->last_frames, 0, op->nframes * op->cfsiz);
590 struct canfd_frame *lcf = op->last_frames + op->cfsiz * index;
592 if ((op->last_frames) && (lcf->flags & RX_THR)) {
673 bcm_rx_update_and_send(op, op->last_frames, rxframe);
730 if ((op->last_frames) && (op->last_frames != &op->last_sframe))
731 kfree(op->last_frames);
960 op->last_frames = NULL;
1081 /* clear last_frames to indicate 'nothing received' */
1082 memset(op->last_frames, 0, msg_head->nframes * op->cfsiz);
1113 op->last_frames = kcalloc(msg_head->nframes,
1116 if (!op->last_frames) {
1124 op->last_frames = &op->last_sframe;
1133 if (op->last_frames != &op->last_sframe)
1134 kfree(op->last_frames);