Hi folks, Looking for recommendation on what the client is suppose to be doing in the following situation. Client opens a file and has a byte-range lock which returned a locking state. Client is acquiring another byte range lock. It uses the returned locking stated for the 2nd lock. Server returns ADMIN_REVOKED. Currently the client goes into an infinite loop of just resending the same LOCK operation with the same locking stateid. Is this a recoverable situation? The fact that the lock state was revoked, should it be an automatic EIO since previous lock is lost (so why bother going forward)? Or should the client retry the lock but send it with the open stateid? Thank you.