From: Jens Axboe <axboe@suse.de>
To: Kevin Corry <corryk@us.ibm.com>
Cc: evms-devel@lists.sourceforge.net,
evms-announce@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: Re: [ANNOUNCE] EVMS Release 1.2.0
Date: Tue, 1 Oct 2002 12:20:43 +0200 [thread overview]
Message-ID: <20021001102043.GD20878@suse.de> (raw)
In-Reply-To: <0209301701470A.15956@boiler>
On Mon, Sep 30 2002, Kevin Corry wrote:
> The EVMS team is announcing the next stable release of the Enterprise Volume
> Management System, which will eventually become EVMS 2.0. Package 1.2.0 is
> now available for download at the project web site:
> http://www.sf.net/projects/evms
[evms.c]
#ifndef CONFIG_SMP
static spinlock_t evms_request_lock = SPIN_LOCK_UNLOCKED;
#endif
...
#ifdef CONFIG_SMP
blk_dev[EVMS_MAJOR].queue = evms_find_queue;
#else
blk_init_queue(BLK_DEFAULT_QUEUE(EVMS_MAJOR),
evms_do_request_fn, &evms_request_lock);
blk_queue_make_request(BLK_DEFAULT_QUEUE(EVMS_MAJOR),
evms_make_request_fn);
#endif
...
#ifdef CONFIG_SMP
lv->request_lock = SPIN_LOCK_UNLOCKED;
blk_init_queue(&lv->request_queue,
evms_do_request_fn,
&lv->request_lock);
blk_queue_make_request(&lv->request_queue,
evms_make_request_fn);
#endif
What the hell is that about?
--
Jens Axboe
next prev parent reply other threads:[~2002-10-01 10:15 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-09-30 22:01 [ANNOUNCE] EVMS Release 1.2.0 Kevin Corry
2002-10-01 10:20 ` Jens Axboe [this message]
2002-10-01 13:18 ` Kevin Corry
2002-10-01 20:13 ` Greg KH
2002-10-01 21:19 ` Kevin Corry
2002-10-01 22:17 ` Greg KH
2002-10-02 13:06 ` Kevin Corry
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=20021001102043.GD20878@suse.de \
--to=axboe@suse.de \
--cc=corryk@us.ibm.com \
--cc=evms-announce@lists.sourceforge.net \
--cc=evms-devel@lists.sourceforge.net \
--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 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.