From: David Chinner <dgc@sgi.com>
To: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Cc: Christoph Hellwig <hch@infradead.org>, xfs@oss.sgi.com
Subject: Re: [PATCH 1/1] XFS: Replace custom AIL linked-list code with struct list_head
Date: Fri, 25 Jan 2008 18:08:00 +1100 [thread overview]
Message-ID: <20080125070800.GH155407@sgi.com> (raw)
In-Reply-To: <20080121040740.GA14938@josefsipek.net>
On Sun, Jan 20, 2008 at 11:07:40PM -0500, Josef 'Jeff' Sipek wrote:
> On Mon, Jan 21, 2008 at 04:04:23AM +0000, Christoph Hellwig wrote:
> > On Sun, Jan 20, 2008 at 07:35:57PM -0500, Josef 'Jeff' Sipek wrote:
> > > Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
> > > ---
> > >
> > > I tested it with xfsqa, and things work as well as they do without it.
> >
> > I like this a lot, but I think Dave has plans to replace the linked list
> > with a more efficient data structure soon, so it might not actually be
> > worth applying.
>
> I've spoken with him about this, and he wants to have a tree where the
> leaves have linked lists (if I understood correctly). So this just makes it
> easier/cleaner for him.
Sort of.
Few things that really should be done in this first patch. Rather
than passing listheads to the xfs_ail_*() functions, it should
really be changed to pass the xfs_ail_t to those functions. The
structure of the list should be opaque to everything outside these
functions.
It also needs to build with XFS_DEBUG enabled - that means
xfs_ail_check needs updating, but I've already got a patch
for the other bit (xfsidbg.c) that works which is attached below.
Cheers,
Dave.
---
make xfsidbg.c compile and work with listhead based AIL.
Signed-off-by: Dave Chinner <dgc@sgi.com>
---
fs/xfs/xfsidbg.c | 66 +++++++++++++++++++++++++------------------------------
1 file changed, 30 insertions(+), 36 deletions(-)
Index: 2.6.x-xfs-new/fs/xfs/xfsidbg.c
===================================================================
--- 2.6.x-xfs-new.orig/fs/xfs/xfsidbg.c 2008-01-21 16:23:35.000000000 +1100
+++ 2.6.x-xfs-new/fs/xfs/xfsidbg.c 2008-01-21 18:16:11.450796254 +1100
@@ -6167,7 +6167,7 @@ xfsidbg_xlogitem(xfs_log_item_t *lip)
printflags((uint)(lip->li_flags), li_flags,"log");
kdb_printf("\n");
kdb_printf("ail forw 0x%p ail back 0x%p lsn %s\ndesc %p ops 0x%p",
- lip->li_ail.ail_forw, lip->li_ail.ail_back,
+ lip->li_ail.next, lip->li_ail.next,
xfs_fmtlsn(&(lip->li_lsn)), lip->li_desc, lip->li_ops);
kdb_printf(" iodonefunc &0x%p\n", lip->li_cb);
if (lip->li_type == XFS_LI_BUF) {
@@ -6220,45 +6220,39 @@ xfsidbg_xaildump(xfs_mount_t *mp)
};
int count;
- if ((mp->m_ail.xa_ail.ail_forw == NULL) ||
- (mp->m_ail.xa_ail.ail_forw == (xfs_log_item_t *)&mp->m_ail.xa_ail)) {
+ if (list_empty(&mp->m_ail.xa_ail)) {
kdb_printf("AIL is empty\n");
return;
}
kdb_printf("AIL for mp 0x%p, oldest first\n", mp);
- lip = (xfs_log_item_t*)mp->m_ail.xa_ail.ail_forw;
- for (count = 0; lip; count++) {
- kdb_printf("[%d] type %s ", count, xfsidbg_item_type_str(lip));
- printflags((uint)(lip->li_flags), li_flags, "flags:");
- kdb_printf(" lsn %s\n ", xfs_fmtlsn(&(lip->li_lsn)));
- switch (lip->li_type) {
- case XFS_LI_BUF:
- xfs_buf_item_print((xfs_buf_log_item_t *)lip, 1);
- break;
- case XFS_LI_INODE:
- xfs_inode_item_print((xfs_inode_log_item_t *)lip, 1);
- break;
- case XFS_LI_EFI:
- xfs_efi_item_print((xfs_efi_log_item_t *)lip, 1);
- break;
- case XFS_LI_EFD:
- xfs_efd_item_print((xfs_efd_log_item_t *)lip, 1);
- break;
- case XFS_LI_DQUOT:
- xfs_dquot_item_print((xfs_dq_logitem_t *)lip, 1);
- break;
- case XFS_LI_QUOTAOFF:
- xfs_qoff_item_print((xfs_qoff_logitem_t *)lip, 1);
- break;
- default:
- kdb_printf("Unknown item type %d\n", lip->li_type);
- break;
- }
-
- if (lip->li_ail.ail_forw == (xfs_log_item_t*)&mp->m_ail.xa_ail) {
- lip = NULL;
- } else {
- lip = lip->li_ail.ail_forw;
+ list_for_each_entry(lip, &mp->m_ail.xa_ail, li_ail) {
+ for (count = 0; lip; count++) {
+ kdb_printf("[%d] type %s ", count, xfsidbg_item_type_str(lip));
+ printflags((uint)(lip->li_flags), li_flags, "flags:");
+ kdb_printf(" lsn %s\n ", xfs_fmtlsn(&(lip->li_lsn)));
+ switch (lip->li_type) {
+ case XFS_LI_BUF:
+ xfs_buf_item_print((xfs_buf_log_item_t *)lip, 1);
+ break;
+ case XFS_LI_INODE:
+ xfs_inode_item_print((xfs_inode_log_item_t *)lip, 1);
+ break;
+ case XFS_LI_EFI:
+ xfs_efi_item_print((xfs_efi_log_item_t *)lip, 1);
+ break;
+ case XFS_LI_EFD:
+ xfs_efd_item_print((xfs_efd_log_item_t *)lip, 1);
+ break;
+ case XFS_LI_DQUOT:
+ xfs_dquot_item_print((xfs_dq_logitem_t *)lip, 1);
+ break;
+ case XFS_LI_QUOTAOFF:
+ xfs_qoff_item_print((xfs_qoff_logitem_t *)lip, 1);
+ break;
+ default:
+ kdb_printf("Unknown item type %d\n", lip->li_type);
+ break;
+ }
}
}
}
next prev parent reply other threads:[~2008-01-25 7:08 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-21 0:35 [PATCH 1/1] XFS: Replace custom AIL linked-list code with struct list_head Josef 'Jeff' Sipek
2008-01-21 4:04 ` Christoph Hellwig
2008-01-21 4:07 ` Josef 'Jeff' Sipek
2008-01-25 7:08 ` David Chinner [this message]
2008-01-25 7:36 ` Josef 'Jeff' Sipek
2008-02-04 6:28 ` Josef 'Jeff' Sipek
2008-02-04 20:52 ` Christoph Hellwig
2008-02-04 23:39 ` Josef 'Jeff' Sipek
2008-02-06 4:44 ` Josef 'Jeff' Sipek
2008-02-22 6:24 ` Josef 'Jeff' Sipek
2008-01-21 4:12 ` David Chinner
2008-01-21 6:54 ` Christoph Hellwig
2008-01-21 7:10 ` David Chinner
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=20080125070800.GH155407@sgi.com \
--to=dgc@sgi.com \
--cc=hch@infradead.org \
--cc=jeffpc@josefsipek.net \
--cc=xfs@oss.sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox