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)) {
678 bcm_rx_update_and_send(op, op->last_frames, rxframe);
735 if ((op->last_frames) && (op->last_frames != &op->last_sframe))
736 kfree(op->last_frames);
965 op->last_frames = NULL;
1086 /* clear last_frames to indicate 'nothing received' */
1087 memset(op->last_frames, 0, msg_head->nframes * op->cfsiz);
1118 op->last_frames = kcalloc(msg_head->nframes,
1121 if (!op->last_frames) {
1129 op->last_frames = &op->last_sframe;
1138 if (op->last_frames != &op->last_sframe)
1139 kfree(op->last_frames);