[CRIU] [PATCH] fixed kernel version detection

Andrew Vagin avagin at parallels.com
Thu Sep 18 03:51:02 PDT 2014


Hi Matthias,

Pls describe the problem in the commit message. I think the
description from your previous message is enough.

Thank you for the patch.

Acked-by: Andrew Vagin <avagin at parallels.com>

"""
My debian testing produces the following output for uname:
$ uname -r
3.14-2-amd64

and so:
$ set -- `uname -r | sed 's/\./ /g'`
$ echo $1
3
$ echo $2
14-2-amd64

this causes zdtm.sh to fail for me on line 293:
[ $1 -eq 3 -a $2 -ge 11 ] && return 0
"""

On Thu, Sep 18, 2014 at 09:50:02AM +0200, Matthias Neuer wrote:
> Signed-off-by: Matthias Neuer <matthias.neuer at uni-ulm.de>
> ---
>  test/zdtm.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/test/zdtm.sh b/test/zdtm.sh
> index f6011ea..b9a7708 100755
> --- a/test/zdtm.sh
> +++ b/test/zdtm.sh
> @@ -291,7 +291,7 @@ git://git.kernel.org/pub/scm/linux/kernel/git/gorcunov/linux-cr.git
>  ===================================================================
>  EOF
>
> -	set -- `uname -r | sed 's/\./ /g'`
> +	set -- `uname -r | sed 's/[\.-]/ /g'`
>
>  	[ $1 -gt 3 ] && return 0
>  	[ $1 -eq 3 -a $2 -ge 11 ] && return 0
> --
> 2.1.0
>
> _______________________________________________
> CRIU mailing list
> CRIU at openvz.org
> https://lists.openvz.org/mailman/listinfo/criu


More information about the CRIU mailing list