Displaying 5 results from an estimated 5 matches for "st_atimensec".
Did you mean:
st_atime_nsec
2009 Feb 12
2
[patch 1/3] add protocol extension to ATTR message
...t_flags |= SSH2_FXE_EXTATTR_ATIME;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIME;
a->atime = st->st_atime;
a->mtime = st->st_mtime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_CTIME;
+ a->ctime = st->st_ctime;
+ a->ext_flags |= SSH2_FXE_EXTATTR_ATIMENSEC;
+ a->atimensec = st->st_atimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_MTIMENSEC;
+ a->mtimensec = st->st_mtimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_CTIMENSEC;
+ a->ctimensec = st->st_ctimensec;
+ a->ext_flags |= SSH2_FXE_EXTATTR_DEV;
+ a->dev = st->st_dev;
+ a->ext_flags |= SSH2_FXE_EXTATTR_INO;
+ a...
2023 Jan 13
0
[klibc:master] mips64: Fix struct stat layout
...TBUF_ST_NSEC
-
struct stat {
unsigned int st_dev;
unsigned int st_pad0[3]; /* Reserved for st_dev expansion */
@@ -22,9 +20,14 @@ struct stat {
off_t st_size;
- struct timespec st_atim;
- struct timespec st_mtim;
- struct timespec st_ctim;
+ unsigned int st_atime;
+ unsigned int st_atimensec;
+
+ unsigned int st_mtime;
+ unsigned int st_mtimensec;
+
+ unsigned int st_ctime;
+ unsigned int st_ctimensec;
unsigned int st_blksize;
unsigned int st_pad2;
2016 Nov 10
0
[PATCH 2/3] qemu: Implement virtio-pstore device
...s if _POSIX_C_SOURCE is defined
> > with the value 200809L or greater, or _XOPEN_SOURCE is defined with
> > the value 700 or greater. If none of the aforementioned macros are
> > defined, then the nanosecond values are exposed with names of the form
> > st_atimensec.
>
> Thanks for the info.
>
> >
> >
> >
> >
> > > +
> > > + rarg->ioc = qio_channel_new_fd(fd, &err);
> > > + if (err) {
> > > + error_reportf_err(err, "cannot create io channel: ");
> > &...
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello,
This is another iteration of the virtio-pstore work. In this patchset
I addressed most of feedbacks from previous version and drooped the
support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation
* changes in v3)
- use QIOChannel API (Stefan, Daniel)
- add bound check for malcious guests (Daniel)
- drop support PSTORE_TYPE_CONSOLE for now
2016 Aug 20
7
[RFC/PATCHSET 0/3] virtio: Implement virtio pstore device (v3)
Hello,
This is another iteration of the virtio-pstore work. In this patchset
I addressed most of feedbacks from previous version and drooped the
support for PSTORE_TYPE_CONSOLE for simplicity. It'll be added once the basic implementation
* changes in v3)
- use QIOChannel API (Stefan, Daniel)
- add bound check for malcious guests (Daniel)
- drop support PSTORE_TYPE_CONSOLE for now