return ret;
}
+static gboolean
+fsync_is_enabled (OstreeRepo *self,
+ OstreeRepoCheckoutOptions *options)
+{
+ return !(self->disable_fsync || options->disable_fsync);
+}
+
static gboolean
write_regular_file_content (OstreeRepo *self,
- OstreeRepoCheckoutMode mode,
+ OstreeRepoCheckoutOptions *options,
GOutputStream *output,
GFileInfo *file_info,
GVariant *xattrs,
GError **error)
{
gboolean ret = FALSE;
+ const OstreeRepoCheckoutMode mode = options->mode;
int fd;
int res;
}
}
- if (!self->disable_fsync)
+ if (fsync_is_enabled (self, options))
{
if (fsync (fd) == -1)
{
gs_set_error_from_errno (error, errno);
- goto out;
+ goto out;
}
}
temp_out = g_unix_output_stream_new (fd, TRUE);
fd = -1; /* Transfer ownership */
- if (!write_regular_file_content (self, options->mode, temp_out, file_info, xattrs, input,
+ if (!write_regular_file_content (self, options, temp_out, file_info, xattrs, input,
cancellable, error))
goto out;
}
cancellable, error))
goto out;
- if (!write_regular_file_content (repo, options->mode, temp_out, file_info, xattrs, input,
+ if (!write_regular_file_content (repo, options, temp_out, file_info, xattrs, input,
cancellable, error))
goto out;
}
}
}
- /* Finally, fsync to ensure all entries are on disk. Ultimately
- * this should be configurable for the case where we're constructing
- * buildroots.
- */
- if (!self->disable_fsync)
+ if (fsync_is_enabled (self, options))
{
- if (fsync (destination_dfd) == -1)
- {
- gs_set_error_from_errno (error, errno);
- goto out;
- }
+ if (fsync (destination_dfd) == -1)
+ {
+ gs_set_error_from_errno (error, errno);
+ goto out;
+ }
}
ret = TRUE;
glnx_fd_close int osdeploy_dfd = -1;
int ret_fd;
+ /* We end up using syncfs for the entire filesystem, so turn off
+ * OstreeRepo level fsync.
+ */
+ checkout_opts.disable_fsync = TRUE;
+
osdeploy_path = g_strconcat ("ostree/deploy/", ostree_deployment_get_osname (deployment), "/deploy", NULL);
checkout_target_name = g_strdup_printf ("%s.%d", csum, ostree_deployment_get_deployserial (deployment));
if (!glnx_shutil_rm_rf_at (osdeploy_dfd, checkout_target_name, cancellable, error))
goto out;
- /* We end up using syncfs for the entire filesystem, so turn off
- * OstreeRepo level fsync.
- */
- { gboolean fsync_was_disabled = ostree_repo_get_disable_fsync (repo);
- gboolean checkout_success;
-
- ostree_repo_set_disable_fsync (repo, TRUE);
- checkout_success = ostree_repo_checkout_tree_at (repo, &checkout_opts, osdeploy_dfd,
- checkout_target_name, csum,
- cancellable, error);
- ostree_repo_set_disable_fsync (repo, fsync_was_disabled);
- if (!checkout_success)
- goto out;
- }
+ if (!ostree_repo_checkout_tree_at (repo, &checkout_opts, osdeploy_dfd,
+ checkout_target_name, csum,
+ cancellable, error))
+ goto out;
if (!glnx_opendirat (osdeploy_dfd, checkout_target_name, TRUE, &ret_fd, error))
goto out;