|
@@ -5119,8 +5119,8 @@ int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
|
|
|
|
|
|
if (!status) {
|
|
|
/* use the most recent implementation id */
|
|
|
- kfree(clp->impl_id);
|
|
|
- clp->impl_id = res.impl_id;
|
|
|
+ kfree(clp->cl_implid);
|
|
|
+ clp->cl_implid = res.impl_id;
|
|
|
} else
|
|
|
kfree(res.impl_id);
|
|
|
|
|
@@ -5144,12 +5144,12 @@ int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred)
|
|
|
out_server_scope:
|
|
|
kfree(res.server_scope);
|
|
|
out:
|
|
|
- if (clp->impl_id)
|
|
|
+ if (clp->cl_implid)
|
|
|
dprintk("%s: Server Implementation ID: "
|
|
|
"domain: %s, name: %s, date: %llu,%u\n",
|
|
|
- __func__, clp->impl_id->domain, clp->impl_id->name,
|
|
|
- clp->impl_id->date.seconds,
|
|
|
- clp->impl_id->date.nseconds);
|
|
|
+ __func__, clp->cl_implid->domain, clp->cl_implid->name,
|
|
|
+ clp->cl_implid->date.seconds,
|
|
|
+ clp->cl_implid->date.nseconds);
|
|
|
dprintk("<-- %s status= %d\n", __func__, status);
|
|
|
return status;
|
|
|
}
|