Lines Matching defs:ops
92 destroy_msg = pipe->ops->destroy_msg;
186 rpc_purge_list(&RPC_I(inode)->waitq, &free_list, pipe->ops->destroy_msg, -EPIPE);
188 if (need_release && pipe->ops->release_pipe)
189 pipe->ops->release_pipe(inode);
224 if (first_open && pipe->ops->open_pipe) {
225 res = pipe->ops->open_pipe(inode);
256 pipe->ops->destroy_msg(msg);
269 pipe->ops->destroy_msg, -EAGAIN);
273 if (last_close && pipe->ops->release_pipe)
274 pipe->ops->release_pipe(inode);
311 res = pipe->ops->upcall(filp, msg, buf, len);
317 pipe->ops->destroy_msg(msg);
333 res = RPC_I(inode)->pipe->ops->downcall(filp, buf, len);
553 pipe->ops = NULL;
564 struct rpc_pipe *rpc_mkpipe_data(const struct rpc_pipe_ops *ops, int flags)
572 pipe->ops = ops;
794 * @ops->upcall, which will be called with the file pointer,
811 if (pipe->ops->upcall == NULL)
813 if (pipe->ops->downcall == NULL)
1440 fc->ops = &rpc_fs_context_ops;