bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 2/6] nfs: implement netfs_get_source


From: Samuel Thibault
Subject: Re: [PATCH 2/6] nfs: implement netfs_get_source
Date: Tue, 25 Feb 2014 00:27:54 -0500
User-agent: Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30)

Justus Winter, le Tue 11 Feb 2014 17:13:08 +0100, a écrit :
> Implement netfs_get_source so that nfs translators show up in
> /proc/mounts.
> 
> * nfs/main.c (netfs_get_source): New function.

Ack.

> ---
>  nfs/main.c | 14 ++++++++++++++
>  1 file changed, 14 insertions(+)
> 
> diff --git a/nfs/main.c b/nfs/main.c
> index 3ce75a9..cd1c29a 100644
> --- a/nfs/main.c
> +++ b/nfs/main.c
> @@ -269,6 +269,20 @@ netfs_append_args (char **argz, size_t *argz_len)
>    return err;
>  }
>  
> +/* The user may define this function.  The function must set source to
> +   the source of CRED. The function may return an EOPNOTSUPP to
> +   indicate that the concept of a source device is not applicable. The
> +   default function always returns EOPNOTSUPP. */
> +error_t
> +netfs_get_source (struct protid *cred, char *source, size_t source_len)
> +{
> +  if (! cred)
> +    return EOPNOTSUPP;
> +
> +  snprintf (source, source_len, "%s:%s", host, remote_fs);
> +  return 0;
> +}
> +
>  /* Extract the host and remote filesystem names from SPEC, which should use
>     either HOST:FS or FS@HOST notation.  Returns the malloced storage into
>     which both REMOTE_FS and HOST point, or 0 if SPEC is invalid.  */
> -- 
> 1.8.5.2
> 

-- 
Samuel
>       dvips -o $@ $<     
Faut faire gffe de pas te couper avec ton truc, t'as mis des ciseaux ($<)
partout :))
-+- Dom in Guide du linuxien pervers - "J'aime pas les Makefile !" -+-



reply via email to

[Prev in Thread] Current Thread [Next in Thread]