From: adilger Date: Thu, 5 May 2005 19:41:27 +0000 (+0000) Subject: Branch: b1_4 X-Git-Tag: v1_7_100~1^25~8^2~154 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=93d4b6619edadc5931927b5d5db439ecac297af9;p=fs%2Flustre-release.git Branch: b1_4 Reorder ll_async_page slightly so the ints are together (slight savings on 64-bit arches). --- diff --git a/lustre/llite/llite_internal.h b/lustre/llite/llite_internal.h index 7e19c00..7078e91 100644 --- a/lustre/llite/llite_internal.h +++ b/lustre/llite/llite_internal.h @@ -206,14 +206,14 @@ extern kmem_cache_t *ll_async_page_slab; extern size_t ll_async_page_slab_size; struct ll_async_page { int llap_magic; - void *llap_cookie; - struct page *llap_page; - struct list_head llap_pending_write; /* only trust these if the page lock is providing exclusion */ unsigned int llap_write_queued:1, llap_defer_uptodate:1, llap_origin:3, llap_ra_used:1; + void *llap_cookie; + struct page *llap_page; + struct list_head llap_pending_write; struct list_head llap_pglist_item; /* user credit information for oss enforcement quota */ struct obd_ucred llap_ouc;