mirror of
https://github.com/torvalds/linux.git
synced 2026-01-25 07:47:50 +00:00
Merge branch 'for-6.19-vsprintf-timespec64' into for-linus
This commit is contained in:
@@ -1983,6 +1983,28 @@ char *time64_str(char *buf, char *end, const time64_t time,
|
||||
return rtc_str(buf, end, &rtc_time, spec, fmt);
|
||||
}
|
||||
|
||||
static noinline_for_stack
|
||||
char *timespec64_str(char *buf, char *end, const struct timespec64 *ts,
|
||||
struct printf_spec spec, const char *fmt)
|
||||
{
|
||||
static const struct printf_spec default_dec09_spec = {
|
||||
.base = 10,
|
||||
.field_width = 9,
|
||||
.precision = -1,
|
||||
.flags = ZEROPAD,
|
||||
};
|
||||
|
||||
if (fmt[2] == 'p')
|
||||
buf = number(buf, end, ts->tv_sec, default_dec_spec);
|
||||
else
|
||||
buf = time64_str(buf, end, ts->tv_sec, spec, fmt);
|
||||
if (buf < end)
|
||||
*buf = '.';
|
||||
buf++;
|
||||
|
||||
return number(buf, end, ts->tv_nsec, default_dec09_spec);
|
||||
}
|
||||
|
||||
static noinline_for_stack
|
||||
char *time_and_date(char *buf, char *end, void *ptr, struct printf_spec spec,
|
||||
const char *fmt)
|
||||
@@ -1993,6 +2015,8 @@ char *time_and_date(char *buf, char *end, void *ptr, struct printf_spec spec,
|
||||
switch (fmt[1]) {
|
||||
case 'R':
|
||||
return rtc_str(buf, end, (const struct rtc_time *)ptr, spec, fmt);
|
||||
case 'S':
|
||||
return timespec64_str(buf, end, (const struct timespec64 *)ptr, spec, fmt);
|
||||
case 'T':
|
||||
return time64_str(buf, end, *(const time64_t *)ptr, spec, fmt);
|
||||
default:
|
||||
@@ -2456,9 +2480,11 @@ early_param("no_hash_pointers", no_hash_pointers_enable);
|
||||
* - 'd[234]' For a dentry name (optionally 2-4 last components)
|
||||
* - 'D[234]' Same as 'd' but for a struct file
|
||||
* - 'g' For block_device name (gendisk + partition number)
|
||||
* - 't[RT][dt][r][s]' For time and date as represented by:
|
||||
* - 't[RST][dt][r][s]' For time and date as represented by:
|
||||
* R struct rtc_time
|
||||
* S struct timespec64
|
||||
* T time64_t
|
||||
* - 'tSp' For time represented by struct timespec64 printed as <seconds>.<nanoseconds>
|
||||
* - 'C' For a clock, it prints the name (Common Clock Framework) or address
|
||||
* (legacy clock framework) of the clock
|
||||
* - 'G' For flags to be printed as a collection of symbolic strings that would
|
||||
|
||||
Reference in New Issue
Block a user