Skip to content

Commit b0071b6

Browse files
Add 'end' to pr_info for consistency
Add 'end' to the log message in ai_one_work_func to match the format used in ai_two_work_func.This improves clarity and consistency in logs. Co-authored-by: Cheng-Yang Chou <[email protected]>
1 parent 6945998 commit b0071b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ static void ai_one_work_func(struct work_struct *w)
222222
tv_end = ktime_get();
223223

224224
nsecs = (s64) ktime_to_ns(ktime_sub(tv_end, tv_start));
225-
pr_info("kxo: [CPU#%d] doing %s for %llu usec\n", cpu, __func__,
225+
pr_info("kxo: [CPU#%d] end doing %s for %llu usec\n", cpu, __func__,
226226
(unsigned long long) nsecs >> 10);
227227
put_cpu();
228228
}

0 commit comments

Comments
 (0)