Displaying 1 result from an estimated 1 matches for "ds_time".
Did you mean:
es_time
2009 May 19
2
[PATCH 1/1] OCFS2: timer to queue scan of all orphan slots
...nt status, i;
+
+ ds = osb->osb_delayed_orphan_scan;
+ if (!ds)
+ return;
+
+ status = ocfs2_orphan_scan_lock(osb, level);
+ if (status < 0) {
+ if (status != -EAGAIN)
+ mlog_errno(status);
+ goto out;
+ }
+
+ ocfs2_get_meta_lvb_mtime(&scan_time, &ds->ds_lockres);
+ if (ds->ds_time.tv_sec != scan_time.tv_sec) {
+ ds->ds_time = scan_time;
+ goto unlock;
+ }
+
+ for (i = 0; i < osb->max_slots; i++)
+ ocfs2_queue_recovery_completion(osb->journal, i, NULL, NULL,
+ NULL);
+
+ now = CURRENT_TIME;
+ ocfs2_stuff_meta_lvb_mtime(&now, &ds->ds_lockres);
+u...