On Mon, Jan 22, 2018 at 10:25 AM, Arnd Bergmann <arnd@xxxxxxxx> wrote: > On Mon, Jan 22, 2018 at 9:21 AM, Linus Walleij <linus.walleij@xxxxxxxxxx> wrote: >> On Sun, Jan 21, 2018 at 11:18 PM, Arnd Bergmann <arnd@xxxxxxxx> wrote: >>> On Sun, Jan 21, 2018 at 10:30 PM, Bartosz Golaszewski <brgl@xxxxxxxx> wrote: >>>> 2018-01-21 16:49 GMT+01:00 Linus Walleij <linus.walleij@xxxxxxxxxx>: >>>>> On Fri, Jan 19, 2018 at 2:28 PM, Bartosz Golaszewski <brgl@xxxxxxxx> wrote: >>> >>>> I was not aware of this, but it seems you're right! Nice catch, thanks. >>>> >>>> How about defining a local struct gpiod_timespec with both seconds and >>>> nanoseconds explicitly defined to uint64_t? >>> >>> Where is that timestamp generated? Is this purely a user space interface >>> with the time read from gettimeofday(), or are we talking about a new >>> kernel-to-user interface? >> >> This is in include/uapi/linux/gpio.h: >> >> /** >> * struct gpioevent_data - The actual event being pushed to userspace >> * @timestamp: best estimate of time of event occurrence, in nanoseconds >> * @id: event identifier >> */ >> struct gpioevent_data { >> __u64 timestamp; >> __u32 id; >> }; >> >> It is the same as is used for IIO. Inside the kernel this ultimately >> comes from ktime_get_real_ns(); > > Ah, too bad, that already contains two mistakes: > > - on x86, the structures are incompatible between 32-bit and 64-bit > user space, as the former has no padding. > - 'real' timestamps are inconvenient because time may jump in > either direction. Time stamps should use 'monotonic' time, i.e. > ktime_get_ns(). and third: - On anything other than x86-32, you are leaking 32 bits of kernel stack data for each event, which might be a security issue. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html