From: Philipp Reisner <philipp.reisner@linbit.com>
To: Nikanth Karthikesan <knikanth@suse.de>
Cc: linux-kernel@vger.kernel.org, Jens Axboe <jens.axboe@oracle.com>,
Greg KH <gregkh@suse.de>, Neil Brown <neilb@suse.de>,
James Bottomley <James.Bottomley@hansenpartnership.com>,
Andi Kleen <andi@firstfloor.org>, Sam Ravnborg <sam@ravnborg.org>,
Dave Jones <davej@redhat.com>, "Lars Marowsky-Bree" <lmb@suse.de>,
"Nicholas A. Bellinger" <nab@linux-iscsi.org>,
Lars Ellenberg <lars.ellenberg@linbit.com>
Subject: Re: [PATCH 02/14] DRBD: lru_cache
Date: Wed, 15 Apr 2009 17:29:36 +0200 [thread overview]
Message-ID: <200904151729.38109.philipp.reisner@linbit.com> (raw)
In-Reply-To: <200904141724.07927.knikanth@suse.de>
[...]
> > +struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr)
> > +{
> > + struct hlist_node *n;
> > + struct lc_element *e;
> > +
> > + BUG_ON(!lc);
> > + BUG_ON(!lc->nr_elements);
>
> This BUG_ON() could be moved/added to lc_init().
>
You are right. Done.
> > +struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr)
> > +{
> > + struct lc_element *e;
> > +
> > + BUG_ON(!lc);
> > + BUG_ON(!lc->nr_elements);
> > +
> > + PARANOIA_ENTRY();
> > + if (lc->flags & LC_STARVING) {
> > + ++lc->starving;
> > + RETURN(NULL);
> > + }
> > +
>
> Even if LC_STARVING, the element could still be available in the cache?
> Shouldn't this check be done after lc_find()?
>
[...]
> > +/* similar to lc_get,
> > + * but only gets a new reference on an existing element.
> > + * you either get the requested element, or NULL.
> > + */
> > +struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr)
> > +{
> > + struct lc_element *e;
> > +
> > + BUG_ON(!lc);
> > + BUG_ON(!lc->nr_elements);
> > +
> > + PARANOIA_ENTRY();
> > + if (lc->flags & LC_STARVING) {
> > + ++lc->starving;
> > + RETURN(NULL);
> > + }
> > +
>
> This check shouldn't be done at all, as we are not at all trying to add a
> new element?
>
That check is okay.
We set LC_STARVING if we need to change a cache slot to an other object
of the space of cacheable objects, but not a single slot was available.
If LC_STARVING is set we do not give out any further references, since we
want to finish that ongoing single object change first.
With this policy the changes in the LRU cache will never deadlock, and
eventually delay others trying to get new references to already cached
objects.
-Phil
--
: Dipl-Ing Philipp Reisner
: LINBIT | Your Way to High Availability
: Tel: +43-1-8178292-50, Fax: +43-1-8178292-82
: http://www.linbit.com
DRBD(R) and LINBIT(R) are registered trademarks of LINBIT, Austria.
prev parent reply other threads:[~2009-04-15 15:30 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-10 12:12 [PATCH 00/14] DRBD: a block device for HA clusters Philipp Reisner
2009-04-10 12:12 ` [PATCH 01/14] DRBD: major.h Philipp Reisner
2009-04-10 12:12 ` [PATCH 02/14] DRBD: lru_cache Philipp Reisner
2009-04-10 12:12 ` [PATCH 03/14] DRBD: activity_log Philipp Reisner
2009-04-10 12:12 ` [PATCH 04/14] DRBD: bitmap Philipp Reisner
2009-04-10 12:12 ` [PATCH 05/14] DRBD: request Philipp Reisner
2009-04-10 12:12 ` [PATCH 06/14] DRBD: userspace_interface Philipp Reisner
2009-04-10 12:12 ` [PATCH 07/14] DRBD: internal_data_structures Philipp Reisner
2009-04-10 12:12 ` [PATCH 08/14] DRBD: main Philipp Reisner
2009-04-10 12:12 ` [PATCH 09/14] DRBD: receiver Philipp Reisner
2009-04-10 12:12 ` [PATCH 10/14] DRBD: proc Philipp Reisner
2009-04-10 12:12 ` [PATCH 11/14] DRBD: worker Philipp Reisner
2009-04-10 12:12 ` [PATCH 12/14] DRBD: variable_length_integer_encoding Philipp Reisner
2009-04-10 12:12 ` [PATCH 13/14] DRBD: misc Philipp Reisner
2009-04-10 12:12 ` [PATCH 14/14] DRBD: final Philipp Reisner
2009-04-11 7:18 ` [PATCH 07/14] DRBD: internal_data_structures Bart Van Assche
2009-04-14 13:53 ` Philipp Reisner
2009-04-12 16:44 ` Bart Van Assche
2009-04-16 13:35 ` Philipp Reisner
2009-04-12 16:23 ` [PATCH 06/14] DRBD: userspace_interface Bart Van Assche
2009-04-17 13:24 ` Philipp Reisner
2009-04-14 2:33 ` Kyle Moffett
2009-04-22 10:31 ` Philipp Reisner
2009-04-16 7:06 ` [PATCH 05/14] DRBD: request Bart Van Assche
2009-04-16 15:32 ` Philipp Reisner
2009-04-10 12:24 ` [PATCH 02/14] DRBD: lru_cache Bart Van Assche
2009-04-14 11:54 ` Nikanth Karthikesan
2009-04-15 15:29 ` Philipp Reisner [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=200904151729.38109.philipp.reisner@linbit.com \
--to=philipp.reisner@linbit.com \
--cc=James.Bottomley@hansenpartnership.com \
--cc=andi@firstfloor.org \
--cc=davej@redhat.com \
--cc=gregkh@suse.de \
--cc=jens.axboe@oracle.com \
--cc=knikanth@suse.de \
--cc=lars.ellenberg@linbit.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lmb@suse.de \
--cc=nab@linux-iscsi.org \
--cc=neilb@suse.de \
--cc=sam@ravnborg.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