|
@@ -410,9 +410,6 @@ static int nfs_create_rpc_client(struct nfs_client *clp, int proto,
|
|
|
*/
|
|
|
static void nfs_destroy_server(struct nfs_server *server)
|
|
|
{
|
|
|
- if (!IS_ERR(server->client_acl))
|
|
|
- rpc_shutdown_client(server->client_acl);
|
|
|
-
|
|
|
if (!(server->flags & NFS_MOUNT_NONLM))
|
|
|
lockd_down(); /* release rpc.lockd */
|
|
|
}
|
|
@@ -755,6 +752,9 @@ void nfs_free_server(struct nfs_server *server)
|
|
|
|
|
|
if (server->destroy != NULL)
|
|
|
server->destroy(server);
|
|
|
+
|
|
|
+ if (!IS_ERR(server->client_acl))
|
|
|
+ rpc_shutdown_client(server->client_acl);
|
|
|
if (!IS_ERR(server->client))
|
|
|
rpc_shutdown_client(server->client);
|
|
|
|