diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-11-19 01:32:21 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-11-19 01:32:21 +0100 |
commit | aad931a30fd88c5319868c6891396d04ad6bfb3e (patch) | |
tree | a8d970987efceae823ad12f44ee2128d7cd74af2 /include | |
parent | Merge tag 'sound-4.9-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/ti... (diff) | |
parent | sunrpc: svc_age_temp_xprts_now should not call setsockopt non-tcp transports (diff) | |
download | linux-aad931a30fd88c5319868c6891396d04ad6bfb3e.tar.xz linux-aad931a30fd88c5319868c6891396d04ad6bfb3e.zip |
Merge tag 'nfsd-4.9-2' of git://linux-nfs.org/~bfields/linux
Pull nfsd bugfix from Bruce Fields:
"Just one fix for an NFS/RDMA crash"
* tag 'nfsd-4.9-2' of git://linux-nfs.org/~bfields/linux:
sunrpc: svc_age_temp_xprts_now should not call setsockopt non-tcp transports
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sunrpc/svc_xprt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sunrpc/svc_xprt.h b/include/linux/sunrpc/svc_xprt.h index ab02a457da1f..e5d193440374 100644 --- a/include/linux/sunrpc/svc_xprt.h +++ b/include/linux/sunrpc/svc_xprt.h @@ -25,6 +25,7 @@ struct svc_xprt_ops { void (*xpo_detach)(struct svc_xprt *); void (*xpo_free)(struct svc_xprt *); int (*xpo_secure_port)(struct svc_rqst *); + void (*xpo_kill_temp_xprt)(struct svc_xprt *); }; struct svc_xprt_class { |