Przeglądaj źródła

pNFS/flexfiles: Make local symbol layoutreturn_ops static

Fixes the following sparse warning:

fs/nfs/flexfilelayout/flexfilelayout.c:2114:34: warning:
 symbol 'layoutreturn_ops' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Wei Yongjun 8 lat temu
rodzic
commit
2e54b9b1b0
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      fs/nfs/flexfilelayout/flexfilelayout.c

+ 1 - 1
fs/nfs/flexfilelayout/flexfilelayout.c

@@ -2076,7 +2076,7 @@ ff_layout_free_layoutreturn(struct nfs4_xdr_opaque_data *args)
 	kfree(ff_args);
 	kfree(ff_args);
 }
 }
 
 
-const struct nfs4_xdr_opaque_ops layoutreturn_ops = {
+static const struct nfs4_xdr_opaque_ops layoutreturn_ops = {
 	.encode = ff_layout_encode_layoutreturn,
 	.encode = ff_layout_encode_layoutreturn,
 	.free = ff_layout_free_layoutreturn,
 	.free = ff_layout_free_layoutreturn,
 };
 };