hi

is it possible that this does not work because a compareable
reason vmsync needed to be patched for backups?

[root@buildserver32:~]$ vmware-toolbox-cmd disk shrink /
Die Partition / kann nicht verkleinert werden

[root@buildserver32:~]$ df
Dateisystem   Typ    Größe Benut  Verf Ben%% Eingehängt auf
rootfs      rootfs     15G  4,8G   11G  33% /
udev      devtmpfs    497M     0  497M   0% /dev
tmpfs        tmpfs    504M     0  504M   0% /dev/shm
tmpfs        tmpfs    504M  2,1M  502M   1% /run
/dev/sdb1     ext4     15G  4,8G   11G  33% /
tmpfs        tmpfs    504M     0  504M   0% /sys/fs/cgroup
tmpfs        tmpfs    504M  2,1M  502M   1% /var/run
tmpfs        tmpfs    504M     0  504M   0% /media
tmpfs        tmpfs    504M  2,1M  502M   1% /var/lock
/dev/sda1     ext4    479M   43M  436M   9% /boot


> --- open-vm-tools/lib/syncDriver/syncDriverLinux.c
> +++ open-vm-tools/lib/syncDriver/syncDriverLinux.c
> @@ -191,9 +191,13 @@ LinuxDriver_Freeze(const char *paths,
>           * supported on the device, we get EOPNOTSUPP. Ignore the latter,
>           * since freezing does not make sense for all fs types, and some
>           * Linux fs drivers may not have been hooked up in the running 
> kernel.
> +          *
> +          * The kernel may also return EBUSY if the superblock is already
> +          * frozen, which can happen if, for example, multiple mount points
> +          * exist.
>           */
>          close(fd);
> -         if (errno != EOPNOTSUPP) {
> +         if (errno != EOPNOTSUPP && errno != EBUSY) {
>             Debug(LGPFX "ioctl failed: %d (%s)\n", errno, strerror(errno));
>             err = first ? SD_UNAVAILABLE : SD_ERROR;
>             break;

Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Learn Windows Azure Live!  Tuesday, Dec 13, 2011
Microsoft is holding a special Learn Windows Azure training event for 
developers. It will provide a great way to learn Windows Azure and what it 
provides. You can attend the event by watching it streamed LIVE online.  
Learn more at http://p.sf.net/sfu/ms-windowsazure
_______________________________________________
open-vm-tools-devel mailing list
open-vm-tools-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/open-vm-tools-devel

Reply via email to