X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Finclude%2Flu_object.h;h=bd0e58d1270ca479cc4b4c6adcfd8cf071f0c215;hp=c093d31829244d0d94153807130f67702aa8a934;hb=295968fa7257978bba7aa4fedb28cd3563d4a5e0;hpb=65d63035c60086a89d932c6f9f1691cf93728d74 diff --git a/lustre/include/lu_object.h b/lustre/include/lu_object.h index c093d31..bd0e58d 100644 --- a/lustre/include/lu_object.h +++ b/lustre/include/lu_object.h @@ -398,17 +398,6 @@ static inline int lu_device_is_md(const struct lu_device *d) } /** - * Flags for the object layers. - */ -enum lu_object_flags { - /** - * this flags is set if lu_object_operations::loo_object_init() has - * been called for this layer. Used by lu_object_alloc(). - */ - LU_OBJECT_ALLOCATED = (1 << 0) -}; - -/** * Common object attributes. */ struct lu_attr { @@ -485,14 +474,6 @@ struct lu_object { * Linkage into list of all layers. */ cfs_list_t lo_linkage; - /** - * Depth. Top level layer depth is 0. - */ - int lo_depth; - /** - * Flags from enum lu_object_flags. - */ - __u32 lo_flags; /** * Link to the device, for debugging. */ @@ -509,7 +490,7 @@ enum lu_object_header_flags { /** * Mark this object has already been taken out of cache. */ - LU_OBJECT_UNHASHED = 1 + LU_OBJECT_UNHASHED = 1, }; enum lu_object_header_attr { @@ -744,6 +725,8 @@ struct lu_object *lu_object_find_at(const struct lu_env *env, struct lu_device *dev, const struct lu_fid *f, const struct lu_object_conf *conf); +void lu_object_purge(const struct lu_env *env, struct lu_device *dev, + const struct lu_fid *f); struct lu_object *lu_object_find_slice(const struct lu_env *env, struct lu_device *dev, const struct lu_fid *f, @@ -1144,7 +1127,7 @@ struct lu_context_key { { \ type *value; \ \ - CLASSERT(CFS_PAGE_SIZE >= sizeof (*value)); \ + CLASSERT(PAGE_CACHE_SIZE >= sizeof (*value)); \ \ OBD_ALLOC_PTR(value); \ if (value == NULL) \ @@ -1331,7 +1314,7 @@ int lu_global_init(void); void lu_global_fini(void); struct lu_kmem_descr { - cfs_mem_cache_t **ckd_cache; + struct kmem_cache **ckd_cache; const char *ckd_name; const size_t ckd_size; };