From: Pavel Machek <pavel@ucw.cz>
To: Tiago Vignatti <tiago.vignatti@nokia.com>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>,
Dave Airlie <airlied@redhat.com>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] vga: implements VGA arbitration on Linux
Date: Sat, 18 Jul 2009 13:47:13 +0200 [thread overview]
Message-ID: <20090718114713.GC1433@ucw.cz> (raw)
In-Reply-To: <1247576250-16274-2-git-send-email-tiago.vignatti@nokia.com>
On Tue 2009-07-14 15:57:29, Tiago Vignatti wrote:
> Signed-off-by: Tiago Vignatti <tiago.vignatti@nokia.com>
> ---
Some patch description might be useful.
> @@ -0,0 +1,1120 @@
> +/*
> + * vgaarb.c
> + *
> + * (C) Copyright 2005 Benjamin Herrenschmidt <benh@kernel.crashing.org>
> + * (C) Copyright 2007 Paulo R. Zanoni <przanoni@gmail.com>
> + * (C) Copyright 2007, 2009 Tiago Vignatti <vignatti@freedesktop.org>
> + *
If you have copyright, GPL would be cool.
> +struct vga_device {
> + struct list_head list;
> + struct pci_dev *pdev;
> + unsigned int decodes; /* what does it decodes */
> + unsigned int owns; /* what does it owns */
> + unsigned int locks; /* what does it locks */
spelling in comments? And ...how can int tell me what it owns?
> +
> +static LIST_HEAD(vga_list);
> +static DEFINE_SPINLOCK(vga_lock);
> +static DECLARE_WAIT_QUEUE_HEAD(vga_wait_queue);
> +
> +#ifndef __ARCH_HAS_VGA_DEFAULT_DEVICE
> +static struct pci_dev *vga_default;
> +#endif
> +
> +static void vga_arb_device_card_gone(struct pci_dev *pdev);
> +
> +/* Find somebody in our list */
> +static struct vga_device *vgadev_find(struct pci_dev *pdev)
> +{
> + struct vga_device *vgadev;
> +
> + list_for_each_entry(vgadev, &vga_list, list)
> + if (pdev == vgadev->pdev)
> + return vgadev;
> + return NULL;
> +}
Indent using tabs. checkpatch?
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
prev parent reply other threads:[~2009-07-18 11:47 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-14 12:57 [PATCH 0/2] VGA arbiter implementation Tiago Vignatti
2009-07-14 12:57 ` [PATCH 1/2] vga: implements VGA arbitration on Linux Tiago Vignatti
2009-07-14 12:57 ` [PATCH 2/2] vga: drops a documentation regarding the VGA arbiter Tiago Vignatti
2009-07-18 11:48 ` Pavel Machek
2009-07-19 18:50 ` Vignatti Tiago (Nokia-D/Helsinki)
2009-07-14 14:35 ` [PATCH 1/2] vga: implements VGA arbitration on Linux Alan Cox
2009-07-15 4:43 ` Dave Airlie
2009-07-16 4:25 ` Dave Airlie
2009-07-16 8:48 ` Alan Cox
2009-07-16 10:38 ` Dave Airlie
2009-07-16 16:25 ` Jesse Barnes
2009-07-17 0:22 ` Benjamin Herrenschmidt
2009-07-17 0:20 ` Benjamin Herrenschmidt
2009-07-17 5:00 ` Dave Airlie
2009-07-17 5:12 ` Benjamin Herrenschmidt
2009-07-14 16:15 ` Greg KH
2009-07-16 3:54 ` Dave Airlie
2009-07-16 4:02 ` Greg KH
2009-07-16 4:06 ` Dave Airlie
2009-07-16 8:41 ` Alan Cox
2009-07-17 0:24 ` Benjamin Herrenschmidt
2009-07-17 0:23 ` Benjamin Herrenschmidt
2009-07-18 11:47 ` Pavel Machek [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=20090718114713.GC1433@ucw.cz \
--to=pavel@ucw.cz \
--cc=airlied@redhat.com \
--cc=jbarnes@virtuousgeek.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=tiago.vignatti@nokia.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.