Lines Matching defs:afs_call
74 struct afs_call { struct
75 const struct afs_call_type *type; /* type of call */ argument
78 void (*async_workfn)(struct afs_call *call); /* asynchronous work function */ argument
79 struct work_struct async_work; /* asynchronous work processor */
80 struct work_struct work; /* actual work processor */
81 struct sk_buff_head rx_queue; /* received packets */
82 struct rxrpc_call *rxcall; /* RxRPC call handle */
83 struct key *key; /* security for this call */
84 struct afs_server *server; /* server affected by incoming CM call */
85 void *request; /* request data (first part) */
86 struct address_space *mapping; /* page set */
87 struct afs_writeback *wb; /* writeback being performed */
88 void *buffer; /* reply receive buffer */
89 void *reply; /* reply buffer (first part) */
90 void *reply2; /* reply buffer (second part) */
91 void *reply3; /* reply buffer (third part) */
92 void *reply4; /* reply buffer (fourth part) */
93 pgoff_t first; /* first page in mapping to deal with */
94 pgoff_t last; /* last page in mapping to deal with */
95 enum { /* call state */
125 struct afs_call_type { argument
131 int (*deliver)(struct afs_call *call, struct sk_buff *skb, argument