[Qemu-devel] [PATCH] qemu-options: Fix broken sheepdog URL

Thomas Huth posted 1 patch 7 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1486642218-18520-1-git-send-email-thuth@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
qemu-options.hx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] qemu-options: Fix broken sheepdog URL
Posted by Thomas Huth 7 years, 2 months ago
The sheepdog URL is broken twice: First it uses a duplicated
http:// prefix, second the website seems to have moved to
https://sheepdog.github.io/sheepdog/ instead.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 qemu-options.hx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-options.hx b/qemu-options.hx
index ad2f8fc..38113b9 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -2583,7 +2583,7 @@ Example
 qemu-system-i386 --drive file=sheepdog://192.0.2.1:30000/MyVirtualMachine
 @end example
 
-See also @url{http://http://www.osrg.net/sheepdog/}.
+See also @url{https://sheepdog.github.io/sheepdog/}.
 
 @item GlusterFS
 GlusterFS is a user space distributed file system.
-- 
1.8.3.1


Re: [Qemu-devel] [PATCH] qemu-options: Fix broken sheepdog URL
Posted by Jeff Cody 7 years, 2 months ago
On Thu, Feb 09, 2017 at 01:10:18PM +0100, Thomas Huth wrote:
> The sheepdog URL is broken twice: First it uses a duplicated
> http:// prefix, second the website seems to have moved to
> https://sheepdog.github.io/sheepdog/ instead.
> 
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>  qemu-options.hx | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/qemu-options.hx b/qemu-options.hx
> index ad2f8fc..38113b9 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -2583,7 +2583,7 @@ Example
>  qemu-system-i386 --drive file=sheepdog://192.0.2.1:30000/MyVirtualMachine
>  @end example
>  
> -See also @url{http://http://www.osrg.net/sheepdog/}.
> +See also @url{https://sheepdog.github.io/sheepdog/}.
>  
>  @item GlusterFS
>  GlusterFS is a user space distributed file system.
> -- 
> 1.8.3.1
> 

Thanks,

Applied to my block branch:

git://github.com/codyprime/qemu-kvm-jtc.git block

-Jeff