Whamcloud - gitweb
Branch HEAD
authorhuanghua <huanghua>
Mon, 28 Jul 2008 13:02:28 +0000 (13:02 +0000)
committerhuanghua <huanghua>
Mon, 28 Jul 2008 13:02:28 +0000 (13:02 +0000)
b=16368
i=nikita.danilov

add comments for new functions as nikita suggests.

lustre/include/obd_ost.h

index 650476c..528992d 100644 (file)
@@ -70,6 +70,9 @@ int osc_extent_blocking_cb(struct ldlm_lock *lock,
                            struct ldlm_lock_desc *new, void *data,
                            int flag);
 
+/** 
+ * Build DLM resource name from object id & group for osc-ost extent lock.
+ */
 static inline struct ldlm_res_id *osc_build_res_name(__u64 id, __u64 gr,
                                                      struct ldlm_res_id *name)
 {
@@ -79,6 +82,9 @@ static inline struct ldlm_res_id *osc_build_res_name(__u64 id, __u64 gr,
         return name;
 }
 
+/**
+ * Return true if the resource is for the object identified by this id & group.
+ */
 static inline int osc_res_name_eq(__u64 id, __u64 gr, struct ldlm_res_id *name)
 {
         return name->name[0] == id && name->name[1] == gr;