diff options
Diffstat (limited to 'fs/lockd/mon.c')
-rw-r--r-- | fs/lockd/mon.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c index 87bd4e4d65dd..06216d6715f7 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c | |||
@@ -183,6 +183,25 @@ static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp) | |||
183 | return xdr_encode_nsm_string(p, name); | 183 | return xdr_encode_nsm_string(p, name); |
184 | } | 184 | } |
185 | 185 | ||
186 | /* | ||
187 | * The "my_id" argument specifies the hostname and RPC procedure | ||
188 | * to be called when the status manager receives notification | ||
189 | * (via the SM_NOTIFY call) that the state of host "mon_name" | ||
190 | * has changed. | ||
191 | */ | ||
192 | static __be32 *xdr_encode_my_id(__be32 *p, struct nsm_args *argp) | ||
193 | { | ||
194 | p = xdr_encode_nsm_string(p, utsname()->nodename); | ||
195 | if (!p) | ||
196 | return ERR_PTR(-EIO); | ||
197 | |||
198 | *p++ = htonl(argp->prog); | ||
199 | *p++ = htonl(argp->vers); | ||
200 | *p++ = htonl(argp->proc); | ||
201 | |||
202 | return p; | ||
203 | } | ||
204 | |||
186 | static __be32 * | 205 | static __be32 * |
187 | xdr_encode_common(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp) | 206 | xdr_encode_common(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp) |
188 | { | 207 | { |