LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: "Akinobu Mita" <akinobu.mita@gmail.com>
To: "Joe Perches" <joe@perches.com>
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org
Subject: Re: [PATCH 1/5] lib: introduce call_once()
Date: Tue, 11 Mar 2008 21:17:05 +0900 [thread overview]
Message-ID: <961aa3350803110517o6abc7fc4rf4a0f241f5351b9c@mail.gmail.com> (raw)
In-Reply-To: <1205162940.656.152.camel@localhost>
2008/3/11, Joe Perches <joe@perches.com>:
> On Mon, 2008-03-10 at 23:57 +0900, Akinobu Mita wrote:
> > +++ 2.6-rc/include/linux/once.h
>
> > +struct once_control {
> > + struct mutex lock;
> > + int done;
>
>
> bool?
Yes, this definetly should be bool.
> > +};
> > +
> > +#define __ONCE_INITIALIZER(name) { \
> > + .lock = __MUTEX_INITIALIZER(name.lock), \
> > + .done = 0, \
> > + }
> > +
> > +#define DEFINE_ONCE(name) struct once_control name = __ONCE_INITIALIZER(name)
>
>
> static?
no, static keyword should not be implicitly added in this macro.
DEFINE_ONCE is intended to be anologous to DEFINE_LOCK, DEFINE_WAIT,
and all other similar interfaces in kernel.
> > +
> > +extern int call_once_slow(struct once_control *once_control,
> > + int (*init_rouine)(void));
>
>
> return bool?
call_once() returns error-code when init_routine fails.
> spelling: s/rouine/routine/g
Oops, thanks.
next prev parent reply other threads:[~2008-03-11 12:17 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-10 14:57 Akinobu Mita
2008-03-10 15:00 ` [PATCH 2/5] idr: use call_once() Akinobu Mita
2008-03-10 15:01 ` [PATCH 3/5] hugetlbfs: " Akinobu Mita
2008-03-10 15:03 ` [PATCH 4/5] shmem: " Akinobu Mita
2008-03-10 15:05 ` [PATCH 5/5] tiny-shmem: " Akinobu Mita
2008-03-10 22:15 ` [PATCH 4/5] shmem: " Hugh Dickins
2008-03-11 12:29 ` Akinobu Mita
2008-03-11 13:41 ` Hugh Dickins
2008-03-10 15:29 ` [PATCH 1/5] lib: introduce call_once() Joe Perches
2008-03-11 12:17 ` Akinobu Mita [this message]
2008-03-11 3:48 ` Andrew Morton
2008-03-11 4:10 ` Nick Piggin
2008-03-11 4:21 ` Andrew Morton
2008-03-11 12:27 ` Akinobu Mita
2008-03-11 17:35 ` Andrew Morton
2008-03-11 18:56 ` Joe Perches
2008-03-11 19:11 ` Andrew Morton
2008-03-15 4:01 ` Akinobu Mita
2008-03-11 12:41 ` Nick Piggin
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=961aa3350803110517o6abc7fc4rf4a0f241f5351b9c@mail.gmail.com \
--to=akinobu.mita@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--subject='Re: [PATCH 1/5] lib: introduce call_once()' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).