[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20140903131319.79095a43@alan.etchedpixels.co.uk>
Date: Wed, 3 Sep 2014 13:13:19 +0100
From: One Thousand Gnomes <gnomes@...rguk.ukuu.org.uk>
To: Loic Pefferkorn <loic@...cp.eu>
Cc: gregkh@...uxfoundation.org, alan@...ux.intel.com,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 3/6] staging: goldfish: document spinlock usage
On Wed, 3 Sep 2014 13:13:44 +0200
Loic Pefferkorn <loic@...cp.eu> wrote:
> Coding style: document spinlock usage
>
> Signed-off-by: Loic Pefferkorn <loic@...cp.eu>
> ---
> drivers/staging/goldfish/goldfish_audio.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/goldfish/goldfish_audio.c b/drivers/staging/goldfish/goldfish_audio.c
> index 23a206d..ab723ab 100644
> --- a/drivers/staging/goldfish/goldfish_audio.c
> +++ b/drivers/staging/goldfish/goldfish_audio.c
> @@ -36,7 +36,7 @@ MODULE_VERSION("1.0");
> struct goldfish_audio {
> char __iomem *reg_base;
> int irq;
> - spinlock_t lock;
> + spinlock_t lock; /* Serialize access to device */
This tells the reader nothing. It's good to document locking models but
- you lock data not code (which is a detail a lot of programmers get wrong
in th design stage too)
- you need to document what objects are protected by the lock
So it should tell the reader what the lock must be held to do
If you look at the audio code it actually protects the status field and
status register of the "hardware"
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists