Lines Matching refs:event
163 static int rpc_clnt_skip_event(struct rpc_clnt *clnt, unsigned long event)
168 switch (event) {
183 static int __rpc_clnt_handle_event(struct rpc_clnt *clnt, unsigned long event,
188 switch (event) {
200 printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event);
206 static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event,
212 if (!rpc_clnt_skip_event(clnt, event))
213 error = __rpc_clnt_handle_event(clnt, event, sb);
220 static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event)
227 if (rpc_clnt_skip_event(clnt, event))
236 static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
243 while ((clnt = rpc_get_client_for_event(sb->s_fs_info, event))) {
244 error = __rpc_pipefs_event(clnt, event, sb);
2434 * event? RFC2203 requires the server to drop all such requests.