diff options
author | Christoph Hellwig | 2017-05-12 16:11:49 +0200 |
---|---|---|
committer | Christoph Hellwig | 2017-05-15 17:42:31 +0200 |
commit | 860bda29b99afdc072a7a796fe81185f7ae85deb (patch) | |
tree | 801d2c90df6046bfec0b3be678d84acc2b5637e8 /fs/nfs | |
parent | sunrpc: move pc_count out of struct svc_procinfo (diff) | |
download | kernel-qcow2-linux-860bda29b99afdc072a7a796fe81185f7ae85deb.tar.gz kernel-qcow2-linux-860bda29b99afdc072a7a796fe81185f7ae85deb.tar.xz kernel-qcow2-linux-860bda29b99afdc072a7a796fe81185f7ae85deb.zip |
sunrpc: mark all struct svc_procinfo instances as const
struct svc_procinfo contains function pointers, and marking it as
constant avoids it being able to be used as an attach vector for
code injections.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/callback_xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback_xdr.c b/fs/nfs/callback_xdr.c index ecd46b8c0985..ae249f27297f 100644 --- a/fs/nfs/callback_xdr.c +++ b/fs/nfs/callback_xdr.c @@ -995,7 +995,7 @@ static struct callback_op callback_ops[] = { /* * Define NFS4 callback procedures */ -static struct svc_procedure nfs4_callback_procedures1[] = { +static const struct svc_procedure nfs4_callback_procedures1[] = { [CB_NULL] = { .pc_func = nfs4_callback_null, .pc_decode = nfs4_decode_void, |