/* Last access time to this inode, for controlling cache evictions. */
int64_t access_time;
- /* Additional state for tracking cache writeback status. */
- uint64_t change_pending; /* change_count version currently being committed to storage */
-
/* Version of the object last serialized and committed to storage. */
BlueSkyCloudLog *committed_item;
if (inode->change_count == inode->change_commit)
return;
- /* Inode writeback is in progress; put back on the dirty list. */
- if (inode->change_pending) {
- /* Waiting for an earlier writeback to finish, so don't start a new
- * writeback yet. */
- g_mutex_lock(fs->lock);
- inode->change_time = bluesky_get_current_time();
- bluesky_list_unlink(&fs->dirty_list, inode->dirty_list);
- inode->dirty_list = bluesky_list_prepend(&fs->dirty_list, inode);
- g_mutex_unlock(fs->lock);
- return;
- }
-
if (bluesky_verbose) {
g_log("bluesky/flushd", G_LOG_LEVEL_DEBUG,
"Starting flush of inode %"PRIu64, inode->inum);
}
- inode->change_pending = inode->change_count;
bluesky_inode_start_sync(inode);
}
bluesky_file_drop_cached(inode);
}
-/* Drop clean data fromt the cache if needed due to memory pressure. */
+/* Drop clean data from the cache if needed due to memory pressure. */
static void flushd_clean(BlueSkyFS *fs)
{
g_mutex_lock(fs->lock);
inode_count = 1;
while (inode_count-- > 0) {
+#if 0
if (g_atomic_int_get(&fs->cache_total) < bluesky_watermark_medium_total)
break;
+#endif
BlueSkyInode *inode;
if (fs->accessed_list.prev == NULL)
void bluesky_cloudlog_write_log(BlueSkyFS *fs)
{
- g_print("Starting cloudlog write...\n");
-
BlueSkyCloudLogState *state = fs->log_state;
if (state->data == NULL)
state->data = g_string_new("");
}
if (state->data->len > 0) {
- g_print("Serialized %zd bytes of data\n", state->data->len);
+ g_print("Serialized %zd bytes of data to cloud\n", state->data->len);
BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
async->op = STORE_OP_PUT;
locked ? 'T' : 'F', inode->refcount);
g_print(" Type: %d Mode: %o\n", inode->type, inode->mode);
- g_print(" change_count = %"PRIu64", change_commit = %"PRIu64"\n",
- inode->change_count, inode->change_commit);
+ g_print(" change_count = %"PRIu64", change_commit = %"PRIu64", "
+ "change_cloud = %"PRIu64"\n",
+ inode->change_count, inode->change_commit, inode->change_cloud);
}
static void cloudlog_dump(gpointer key, gpointer value, gpointer user_data)
/* Wait for all log items to be committed to disk. */
bluesky_log_finish_all(log_items);
+
+ /* Mark the inode as clean */
+ inode->change_commit = inode->change_count;
+ inode->change_time = 0;
+ g_mutex_lock(inode->fs->lock);
+ bluesky_list_unlink(&inode->fs->dirty_list, inode->dirty_list);
+ inode->dirty_list = NULL;
+ g_mutex_unlock(inode->fs->lock);
}
/* Write back an inode and all associated data and wait for completion. Inode