mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Grant Likely" <grant.likely@secretlab.ca>
To: "Christoph Hellwig" <hch@lst.de>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sysace: HDIO_GETGEO has it's own method for ages
Date: Wed, 1 Aug 2007 06:57:36 -0600	[thread overview]
Message-ID: <fa686aa40708010557k5e72932l7f0d05b83c09878b@mail.gmail.com> (raw)
In-Reply-To: <20070730220029.GA28003@lst.de>

On 7/30/07, Christoph Hellwig <hch@lst.de> wrote:
> The way this driver triesto implement HDIO_GETGEO it'll never be
> called.  Then again on ppc it probably will never be called anyway
> because it's utterly pointless.
>
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Heh, that's what I get for following LDD3 exactly for writing my block
dev, and not keeping up with API changes.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

>
> Index: linux-2.6/drivers/block/xsysace.c
> ===================================================================
> --- linux-2.6.orig/drivers/block/xsysace.c      2007-07-30 22:53:11.000000000 +0200
> +++ linux-2.6/drivers/block/xsysace.c   2007-07-30 22:54:43.000000000 +0200
> @@ -902,26 +902,17 @@ static int ace_release(struct inode *ino
>         return 0;
>  }
>
> -static int ace_ioctl(struct inode *inode, struct file *filp,
> -                    unsigned int cmd, unsigned long arg)
> +static int ace_getgeo(struct block_device *bdev, struct hd_geometry *geo)
>  {
> -       struct ace_device *ace = inode->i_bdev->bd_disk->private_data;
> -       struct hd_geometry __user *geo = (struct hd_geometry __user *)arg;
> -       struct hd_geometry g;
> -       dev_dbg(ace->dev, "ace_ioctl()\n");
> -
> -       switch (cmd) {
> -       case HDIO_GETGEO:
> -               g.heads = ace->cf_id.heads;
> -               g.sectors = ace->cf_id.sectors;
> -               g.cylinders = ace->cf_id.cyls;
> -               g.start = 0;
> -               return copy_to_user(geo, &g, sizeof(g)) ? -EFAULT : 0;
> +       struct ace_device *ace = bdev->bd_disk->private_data;
>
> -       default:
> -               return -ENOTTY;
> -       }
> -       return -ENOTTY;
> +       dev_dbg(ace->dev, "ace_getgeo()\n");
> +
> +       geo->heads = ace->cf_id.heads;
> +       geo->sectors = ace->cf_id.sectors;
> +       geo->cylinders = ace->cf_id.cyls;
> +
> +       return 0;
>  }
>
>  static struct block_device_operations ace_fops = {
> @@ -930,7 +921,7 @@ static struct block_device_operations ac
>         .release = ace_release,
>         .media_changed = ace_media_changed,
>         .revalidate_disk = ace_revalidate_disk,
> -       .ioctl = ace_ioctl,
> +       .getgeo = ace_getgeo,
>  };
>
>  /* --------------------------------------------------------------------
>


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
grant.likely@secretlab.ca
(403) 399-0195

      reply	other threads:[~2007-08-01 12:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-30 22:00 Christoph Hellwig
2007-08-01 12:57 ` Grant Likely [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fa686aa40708010557k5e72932l7f0d05b83c09878b@mail.gmail.com \
    --to=grant.likely@secretlab.ca \
    --cc=hch@lst.de \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®