Lines Matching refs:fcb
603 struct file_control_block *fcb;
607 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA);
608 if (!fcb)
612 rc = diag_read_next_file_info(fcb, 0);
617 if (fcb->file_stat & (FLG_SYSTEM_HOLD | FLG_USER_HOLD)) {
633 rc = diag_read_next_file_info(fcb, 0);
636 if (!(fcb->file_stat & FLG_IN_USE)) {
645 kfree(fcb);
663 struct file_control_block *fcb;
666 fcb = kmalloc(sizeof(*fcb), GFP_KERNEL | GFP_DMA);
667 if (!fcb)
669 rc = diag_read_next_file_info(fcb, 0);
672 if (fcb->file_stat & FLG_CP_DUMP)
675 rc = fcb->rec_len;
678 kfree(fcb);