On Wed, Jul 23, 2008 at 10:36:45AM +0200, [EMAIL PROTECTED] wrote:

Hi Christian,

>  long kvm_arch_dev_ioctl(struct file *filp,
>                          unsigned int ioctl, unsigned long arg)
>  {
> -     return -EINVAL;
> +     long r = -EINVAL;
> +
> +     switch (ioctl) {
> +     case KVM_GET_PPCPV_MAGICPAGE_SIZE:
> +             r = -EINVAL;

Not needed you set it on the declaration.

> +             if (arg)
> +                     goto out;
> +             r = 1024;

Ummm what does 1024 represent? can it me #defined? or at least add a
comment.

> +             break;
> +     default:
> +             r = -EINVAL;

Not needed you set it on the declaration.

> +     }
> +out:
> +     return r;
>  }

Yours Tony

  linux.conf.au    http://www.marchsouth.org/
  Jan 19 - 24 2009 The Australian Linux Technical Conference!

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev

Reply via email to