Lines Matching refs:event
165 static int rpc_clnt_skip_event(struct rpc_clnt *clnt, unsigned long event)
170 switch (event) {
185 static int __rpc_clnt_handle_event(struct rpc_clnt *clnt, unsigned long event,
190 switch (event) {
202 printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event);
208 static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event,
214 if (!rpc_clnt_skip_event(clnt, event))
215 error = __rpc_clnt_handle_event(clnt, event, sb);
222 static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event)
229 if (rpc_clnt_skip_event(clnt, event))
238 static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
245 while ((clnt = rpc_get_client_for_event(sb->s_fs_info, event))) {
246 error = __rpc_pipefs_event(clnt, event, sb);
2551 * event? RFC2203 requires the server to drop all such requests.