Lines Matching refs:lw
501 struct smb2_lease_break_work *lw = container_of(work,
505 rc = SMB2_lease_break(0, tlink_tcon(lw->tlink), lw->lease_key,
506 lw->lease_state);
509 cifs_put_tlink(lw->tlink);
510 kfree(lw);
517 struct smb2_lease_break_work *lw;
519 lw = kmalloc(sizeof(struct smb2_lease_break_work), GFP_KERNEL);
520 if (!lw) {
525 INIT_WORK(&lw->lease_break, cifs_ses_oplock_break);
526 lw->tlink = tlink;
527 lw->lease_state = new_lease_state;
528 memcpy(lw->lease_key, lease_key, SMB2_LEASE_KEY_SIZE);
529 queue_work(cifsiod_wq, &lw->lease_break);