X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Fliblustre%2Fdir.c;h=09cdc5c43483a240d4ae4eab8e2e20acbe576c58;hp=80b410a43d1596b75477f84414ef471994443e1b;hb=f4ea7b630b8adc9856ee67c6d16549f36e14efd1;hpb=adde80ffefe375e113c0e4a2a5f8e37519205b5c diff --git a/lustre/liblustre/dir.c b/lustre/liblustre/dir.c index 80b410a..09cdc5c 100644 --- a/lustre/liblustre/dir.c +++ b/lustre/liblustre/dir.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,8 +14,8 @@ * in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU General Public License - * version 2 along with this program; If not, see [sun.com URL with a - * copy of GPLv2]. + * version 2 along with this program; If not, see + * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or @@ -26,8 +24,10 @@ * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. + * + * Copyright (c) 2011, 2012, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -50,28 +50,15 @@ #include #include -#include -#ifdef HAVE_XTIO_H -#include -#endif -#include -#include -#include -#ifdef HAVE_FILE_H -#include -#endif - -#undef LIST_HEAD - #ifdef HAVE_LINUX_UNISTD_H #include #elif defined(HAVE_UNISTD_H) #include #endif -#include #include "llite_lib.h" +#include /* (new) readdir implementation overview can be found in lustre/llite/dir.c */ @@ -86,21 +73,19 @@ static int llu_dir_do_readpage(struct inode *inode, struct page *page) struct lookup_intent it = { .it_op = IT_READDIR }; struct md_op_data op_data = {{ 0 }}; ldlm_policy_data_t policy = { .l_inodebits = { MDS_INODELOCK_UPDATE } }; - __u64 offset; int rc = 0; ENTRY; + llu_prep_md_op_data(&op_data, inode, NULL, NULL, 0, 0, LUSTRE_OPC_ANY); rc = md_lock_match(sbi->ll_md_exp, LDLM_FL_BLOCK_GRANTED, &lli->lli_fid, LDLM_IBITS, &policy, LCK_CR, &lockh); if (!rc) { struct ldlm_enqueue_info einfo = {LDLM_IBITS, LCK_CR, - llu_md_blocking_ast, ldlm_completion_ast, NULL, inode}; - - llu_prep_md_op_data(&op_data, inode, NULL, NULL, 0, 0, - LUSTRE_OPC_ANY); + llu_md_blocking_ast, ldlm_completion_ast, NULL, NULL, + inode}; rc = md_enqueue(sbi->ll_md_exp, &einfo, &it, - &op_data, &lockh, NULL, 0, + &op_data, &lockh, NULL, 0, NULL, LDLM_FL_CANCEL_ON_BLOCK); request = (struct ptlrpc_request *)it.d.lustre.it_data; if (request) @@ -112,9 +97,9 @@ static int llu_dir_do_readpage(struct inode *inode, struct page *page) } ldlm_lock_dump_handle(D_OTHER, &lockh); - offset = (__u64)hash_x_index(page->index); - rc = md_readpage(sbi->ll_md_exp, &lli->lli_fid, NULL, - offset, page, &request); + op_data.op_offset = (__u64)hash_x_index(page->index, 0); + op_data.op_npages = 1; + rc = md_readpage(sbi->ll_md_exp, &op_data, &page, &request); if (!rc) { body = req_capsule_server_get(&request->rq_pill, &RMF_MDT_BODY); LASSERT(body != NULL); /* checked by md_readpage() */ @@ -131,8 +116,8 @@ static int llu_dir_do_readpage(struct inode *inode, struct page *page) return rc; } -static cfs_page_t *llu_dir_read_page(struct inode *ino, __u32 hash, - int exact, struct ll_dir_chain *chain) +static cfs_page_t *llu_dir_read_page(struct inode *ino, __u64 hash, + int exact, struct ll_dir_chain *chain) { cfs_page_t *page; int rc; @@ -141,7 +126,7 @@ static cfs_page_t *llu_dir_read_page(struct inode *ino, __u32 hash, OBD_PAGE_ALLOC(page, 0); if (!page) RETURN(ERR_PTR(-ENOMEM)); - page->index = hash_x_index(hash); + page->index = hash_x_index(hash, 0); rc = llu_dir_do_readpage(ino, page); if (rc) { @@ -193,12 +178,12 @@ static int filldir(char *buf, int buflen, return 0; } -/* +/* * TODO: much of the code here is similar/identical to llite ll_readdir(). * These code can be factored out and shared in a common module. */ -ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, +ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, char *buf, size_t nbytes) { struct llu_inode_info *lli = llu_i2info(dir); @@ -209,7 +194,7 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, int filled = 0; int rc; int done; - int shift; + __u16 type; ENTRY; liblustre_wait_event(0); @@ -219,7 +204,7 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, RETURN(0); } - if (pos == DIR_END_OFF) + if (pos == MDS_DIR_END_OFF) /* * end-of-file. */ @@ -227,7 +212,6 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, rc = 0; done = 0; - shift = 0; ll_dir_chain_init(&chain); page = llu_dir_read_page(dir, pos, 0, &chain); @@ -236,11 +220,11 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, struct lu_dirent *ent; if (!IS_ERR(page)) { - /* + /* * If page is empty (end of directoryis reached), - * use this value. + * use this value. */ - __u64 hash = DIR_END_OFF; + __u64 hash = MDS_DIR_END_OFF; __u64 next; dp = page->addr; @@ -249,7 +233,7 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, char *name; int namelen; struct lu_fid fid; - ino_t ino; + __u64 ino; hash = le64_to_cpu(ent->lde_hash); namelen = le16_to_cpu(ent->lde_namelen); @@ -270,17 +254,17 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, fid = ent->lde_fid; name = ent->lde_name; fid_le_to_cpu(&fid, &fid); - ino = llu_fid_build_ino(llu_i2sbi(dir), &fid); - + ino = cl_fid_build_ino(&fid, 0); + type = ll_dirent_type_get(ent); done = filldir(buf, nbytes, name, namelen, - (loff_t)hash, ino, DT_UNKNOWN, + (loff_t)hash, ino, type, &filled); } next = le64_to_cpu(dp->ldp_hash_end); OBD_PAGE_FREE(page); if (!done) { pos = next; - if (pos == DIR_END_OFF) + if (pos == MDS_DIR_END_OFF) /* * End of directory reached. */ @@ -308,7 +292,7 @@ ssize_t llu_iop_filldirentries(struct inode *dir, _SYSIO_OFF_T *basep, PFID(&lli->lli_fid), (unsigned long)pos, rc); } } - lli->lli_dir_pos = (loff_t)(__s32)pos; + lli->lli_dir_pos = (loff_t)pos; *basep = lli->lli_dir_pos; out: ll_dir_chain_fini(&chain);