Lines Matching defs:lfcc
345 struct lfcc {
364 struct lfcc *lfcc;
370 lfcc = kmalloc(sizeof(struct lfcc), GFP_KERNEL);
371 if (!lfcc) {
376 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &lfcc->gh);
378 kfree(lfcc);
381 list_add(&lfcc->list, &list);
407 lfcc = list_first_entry(&list, struct lfcc, list);
408 list_del(&lfcc->list);
409 gfs2_glock_dq_uninit(&lfcc->gh);
410 kfree(lfcc);