X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Finclude%2Flclient.h;h=87361eb99a9eeb77010283f5fb7e9f3c715dc0a7;hb=303f41aa0ff07a43a31e397a3d163a6b8b6e4864;hp=2c88bebf3c0525345813f5cc513d95094d786d1b;hpb=f112981702e67c182bd2467b10cefd44bc121f2e;p=fs%2Flustre-release.git diff --git a/lustre/include/lclient.h b/lustre/include/lclient.h index 2c88beb..87361eb 100644 --- a/lustre/include/lclient.h +++ b/lustre/include/lclient.h @@ -26,7 +26,7 @@ * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. */ /* @@ -48,31 +48,18 @@ int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io, struct inode *inode, struct cl_object *clob); /** - * Common IO arguments for various VFS I/O interfaces. + * Locking policy for setattr. */ -struct ccc_io_args { - int cia_is_sendfile; -#ifndef HAVE_FILE_WRITEV - struct kiocb *cia_iocb; -#endif - struct iovec *cia_iov; - unsigned long cia_nrsegs; - read_actor_t cia_actor; - void *cia_target; -}; - -/** - * Locking policy for truncate. - */ -enum ccc_trunc_lock_type { +enum ccc_setattr_lock_type { /** Locking is done by server */ - TRUNC_NOLOCK, + SETATTR_NOLOCK, /** Extent lock is enqueued */ - TRUNC_EXTENT, + SETATTR_EXTENT_LOCK, /** Existing local extent lock is used */ - TRUNC_MATCH + SETATTR_MATCH_LOCK }; + /** * IO state private to vvp or slp layers. */ @@ -100,9 +87,9 @@ struct ccc_io { union { struct { - int cui_locks_released; - enum ccc_trunc_lock_type cui_local_lock; - } trunc; + int cui_locks_released; + enum ccc_setattr_lock_type cui_local_lock; + } setattr; } u; /** * True iff io is processing glimpse right now. @@ -117,13 +104,18 @@ struct ccc_io { #endif }; +/** + * True, if \a io is a normal io, False for other (sendfile, splice*). + * must be impementated in arch specific code. + */ +int cl_is_normalio(const struct lu_env *env, const struct cl_io *io); + extern struct lu_context_key ccc_key; extern struct lu_context_key ccc_session_key; struct ccc_thread_info { struct cl_lock_descr cti_descr; struct cl_io cti_io; - struct cl_sync_io cti_sync_io; struct cl_attr cti_attr; }; @@ -136,6 +128,20 @@ static inline struct ccc_thread_info *ccc_env_info(const struct lu_env *env) return info; } +static inline struct cl_attr *ccc_env_thread_attr(const struct lu_env *env) +{ + struct cl_attr *attr = &ccc_env_info(env)->cti_attr; + memset(attr, 0, sizeof(*attr)); + return attr; +} + +static inline struct cl_io *ccc_env_thread_io(const struct lu_env *env) +{ + struct cl_io *io = &ccc_env_info(env)->cti_io; + memset(io, 0, sizeof(*io)); + return io; +} + struct ccc_session { struct ccc_io cs_ios; }; @@ -168,7 +174,7 @@ struct ccc_object { * * \see ccc_page::cpg_pending_linkage */ - struct list_head cob_pending_list; + cfs_list_t cob_pending_list; /** * Access this counter is protected by inode->i_sem. Now that @@ -181,7 +187,7 @@ struct ccc_object { * * \see ll_vm_open(), ll_vm_close(). */ - atomic_t cob_mmap_cnt; + cfs_atomic_t cob_mmap_cnt; }; /** @@ -199,19 +205,9 @@ struct ccc_page { * that is, never iterated through, only checked for list_empty(), but * having a list is useful for debugging. */ - struct list_head cpg_pending_linkage; + cfs_list_t cpg_pending_linkage; /** VM page */ cfs_page_t *cpg_page; - struct cl_sync_io *cpg_sync_io; - /** - * checksum for paranoid I/O debugging enabled by - * ENABLE_LLITE_CHECKSUM configuration option. - * - * XXX This cannot be implemented reliably because checksum cannot be - * updated from ->set_page_dirty() that is called without page VM - * lock. - */ - __u32 cpg_checksum; }; static inline struct ccc_page *cl2ccc_page(const struct cl_page_slice *slice) @@ -287,9 +283,9 @@ int ccc_page_is_under_lock(const struct lu_env *env, const struct cl_page_slice *slice, struct cl_io *io); int ccc_fail(const struct lu_env *env, const struct cl_page_slice *slice); void ccc_transient_page_verify(const struct cl_page *page); -void ccc_transient_page_own(const struct lu_env *env, +int ccc_transient_page_own(const struct lu_env *env, const struct cl_page_slice *slice, - struct cl_io *io); + struct cl_io *io, int nonblock); void ccc_transient_page_assume(const struct lu_env *env, const struct cl_page_slice *slice, struct cl_io *io); @@ -305,6 +301,8 @@ void ccc_transient_page_discard(const struct lu_env *env, int ccc_transient_page_prep(const struct lu_env *env, const struct cl_page_slice *slice, struct cl_io *io); +void ccc_lock_delete(const struct lu_env *env, + const struct cl_lock_slice *slice); void ccc_lock_fini(const struct lu_env *env,struct cl_lock_slice *slice); int ccc_lock_enqueue(const struct lu_env *env,const struct cl_lock_slice *slice, struct cl_io *io, __u32 enqflags); @@ -326,8 +324,13 @@ int ccc_io_one_lock(const struct lu_env *env, struct cl_io *io, __u32 enqflags, enum cl_lock_mode mode, loff_t start, loff_t end); void ccc_io_end(const struct lu_env *env, const struct cl_io_slice *ios); +void ccc_io_advance(const struct lu_env *env, const struct cl_io_slice *ios, + size_t nob); +void ccc_io_update_iov(const struct lu_env *env, struct ccc_io *cio, + struct cl_io *io); int ccc_prep_size(const struct lu_env *env, struct cl_object *obj, - struct cl_io *io, loff_t pos, int vfslock); + struct cl_io *io, loff_t start, size_t count, int vfslock, + int *exceed); void ccc_req_completion(const struct lu_env *env, const struct cl_req_slice *slice, int ioret); void ccc_req_attr_set(const struct lu_env *env,const struct cl_req_slice *slice, @@ -348,9 +351,8 @@ cfs_page_t *cl2vm_page (const struct cl_page_slice *slice); struct inode *ccc_object_inode(const struct cl_object *obj); struct ccc_object *cl_inode2ccc (struct inode *inode); -int cl_setattr_do_truncate(struct inode *inode, loff_t size, - struct obd_capa *capa); -int cl_setattr_ost(struct inode *inode, struct obd_capa *capa); +int cl_setattr_ost(struct inode *inode, const struct iattr *attr, + struct obd_capa *capa); struct cl_page *ccc_vmpage_page_transient(cfs_page_t *vmpage); int ccc_object_invariant(const struct cl_object *obj); @@ -358,6 +360,10 @@ int cl_inode_init(struct inode *inode, struct lustre_md *md); void cl_inode_fini(struct inode *inode); int cl_local_size(struct inode *inode); +__u16 ll_dirent_type_get(struct lu_dirent *ent); +__u64 cl_fid_build_ino(const struct lu_fid *fid, int api32); +__u32 cl_fid_build_gen(const struct lu_fid *fid); + #ifdef INVARIANT_CHECK # define CLOBINVRNT(env, clob, expr) \ do { \ @@ -374,6 +380,17 @@ int cl_local_size(struct inode *inode); int cl_init_ea_size(struct obd_export *md_exp, struct obd_export *dt_exp); int cl_ocd_update(struct obd_device *host, struct obd_device *watched, - enum obd_notify_event ev, void *owner); + enum obd_notify_event ev, void *owner, void *data); + +struct ccc_grouplock { + struct lu_env *cg_env; + struct cl_io *cg_io; + struct cl_lock *cg_lock; + unsigned long cg_gid; +}; + +int cl_get_grouplock(struct cl_object *obj, unsigned long gid, int nonblock, + struct ccc_grouplock *cg); +void cl_put_grouplock(struct ccc_grouplock *cg); #endif /*LCLIENT_H */