__break_lease - revoke all outstanding leases on file
"int __break_lease(struct inode * " "inode" ", unsigned int " "mode" ");"
inode
the inode of the file to returnmodethe open mode (read or write)
break_lease (inlined for speed) has checked there already is a lease on this file. Leases are broken on a call to openfR
or truncatefR. This function can sleep unless you specified
O_NONBLOCKfR
to your openfR.