]> Git Repo - linux.git/blobdiff - fs/jbd2/commit.c
ALSA: fireface: add support for packet streaming on Fireface 800
[linux.git] / fs / jbd2 / commit.c
index 8de0e7723316c266ca752336c6bc48f6ac56cc3d..150cc030b4d7a1ec50a51c4b488304e572e54f90 100644 (file)
@@ -121,7 +121,7 @@ static int journal_submit_commit_record(journal_t *journal,
        struct commit_header *tmp;
        struct buffer_head *bh;
        int ret;
-       struct timespec64 now = current_kernel_time64();
+       struct timespec64 now;
 
        *cbh = NULL;
 
@@ -134,6 +134,7 @@ static int journal_submit_commit_record(journal_t *journal,
                return 1;
 
        tmp = (struct commit_header *)bh->b_data;
+       ktime_get_coarse_real_ts64(&now);
        tmp->h_commit_sec = cpu_to_be64(now.tv_sec);
        tmp->h_commit_nsec = cpu_to_be32(now.tv_nsec);
 
This page took 0.035348 seconds and 4 git commands to generate.