[Libguestfs] [PATCH 2/5] fuse: Fix hard link creation.

Matthew Booth mbooth at redhat.com
Tue Nov 17 18:04:16 UTC 2009


On 17/11/09 17:06, Richard W.M. Jones wrote:
>> From f5eec5299fc97de6bb094f23e36dace83fb46363 Mon Sep 17 00:00:00 2001
> From: Richard Jones<rjones at redhat.com>
> Date: Tue, 17 Nov 2009 17:02:15 +0000
> Subject: [PATCH 2/5] fuse: Fix hard link creation.
>
> The parameters were swapped.  We also need to invalidate the
> cache for both parameters.
> ---
>   fuse/guestmount.c |    3 ++-
>   1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/fuse/guestmount.c b/fuse/guestmount.c
> index 8e081a6..fe53822 100644
> --- a/fuse/guestmount.c
> +++ b/fuse/guestmount.c
> @@ -462,9 +462,10 @@ fg_link (const char *from, const char *to)
>
>     if (read_only) return -EROFS;
>
> +  dir_cache_invalidate (from);
>     dir_cache_invalidate (to);
>
> -  r = guestfs_ln (g, to, from);
> +  r = guestfs_ln (g, from, to);
>     if (r == -1)
>       return error ();
>
> -- 1.6.5.2

ACK.

-- 
Matthew Booth, RHCA, RHCSS
Red Hat Engineering, Virtualisation Team

M:       +44 (0)7977 267231
GPG ID:  D33C3490
GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490




More information about the Libguestfs mailing list