Displaying 1 result from an estimated 1 matches for "rq_queue".
Did you mean:
rq_queued
2006 May 11
1
Re: [PATCH] smbfs: Fix slab corruption in samba error path
...t or on interrupt we want to try and remove the
> * request from the recvq/xmitq.
> */
> smb_lock_server(server);
> if (!(req->rq_flags & SMB_REQ_RECEIVED)) {
> list_del_init(&req->rq_queue);
> smb_rput(req);
> }
> smb_unlock_server(server);
> }
> [...]
> if (signal_pending(current))
> req->rq_errno = -ERESTARTSYS;
>
> I guess that some codepath like smbiod_flush() c...