/openbmc/linux/fs/ubifs/ |
H A D | Kconfig | 56 Originally UBIFS did not support atime, because it looked like a bad idea due 57 increased flash wear. This option adds atime support and it is disabled by default 58 to preserve the old behavior. If you enable this option, UBIFS starts updating atime, 59 which means that file-system read operations will cause writes (inode atime 61 so be careful. How often atime is updated depends on the selected strategy:
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/ |
H A D | uw-imap-fix-incompatible-pointer-types.patch | 32 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 78 tp[0] = time (0); /* reset atime to now */ 90 tp[0] = time (0); /* atime is now */ 101 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 120 else tp[0] = tp[1] - 1; /* set atime to now-1 if successful copy */ 136 /* set atime to now, mtime a second earlier */ 150 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 169 tp[0] = time (0); /* reset atime to now */ 187 tp[0] = time (0); /* make sure atime remains greater */ 226 tp[0] = time (0); /* atime is now */ [all …]
|
/openbmc/linux/drivers/iio/light/ |
H A D | tcs3472.c | 65 u8 atime; member 171 *val2 = (256 - data->atime) * 2400; in tcs3472_read_raw() 203 data->atime = i; in tcs3472_write_raw() 206 data->atime); in tcs3472_write_raw() 241 period = (256 - data->atime) * 2400 * in tcs3472_read_event() 294 if (period <= (256 - data->atime) * 2400 * in tcs3472_write_event() 485 data->atime = ret; in tcs3472_probe()
|
/openbmc/linux/fs/ |
H A D | stat.c | 60 stat->atime = inode->i_atime; in generic_fillattr() 342 tmp.st_atime = stat->atime.tv_sec; in cp_old_stat() 419 tmp.st_atime = stat->atime.tv_sec; in cp_new_stat() 423 tmp.st_atime_nsec = stat->atime.tv_nsec; in cp_new_stat() 561 tmp.st_atime = stat->atime.tv_sec; in cp_new_stat64() 562 tmp.st_atime_nsec = stat->atime.tv_nsec; in cp_new_stat64() 641 tmp.stx_atime.tv_sec = stat->atime.tv_sec; in cp_statx() 642 tmp.stx_atime.tv_nsec = stat->atime.tv_nsec; in cp_statx() 734 tmp.st_atime = stat->atime.tv_sec; in cp_compat_stat() 735 tmp.st_atime_nsec = stat->atime.tv_nsec; in cp_compat_stat()
|
/openbmc/linux/fs/hostfs/ |
H A D | hostfs_user.c | 29 p->atime.tv_sec = buf->st_atime; in stat64_to_hostfs() 30 p->atime.tv_nsec = 0; in stat64_to_hostfs() 246 times[0].tv_sec = st.atime.tv_sec; in set_attr() 247 times[0].tv_usec = st.atime.tv_nsec / 1000; in set_attr() 271 attrs->ia_atime = st.atime; in set_attr()
|
H A D | hostfs.h | 63 struct hostfs_timespec atime, mtime, ctime; member
|
/openbmc/qemu/scripts/ |
H A D | analyse-9p-simpletrace.py | 102 def v9fs_stat_return(self, tag, id, mode, atime, mtime, length): argument 103 …print("RSTAT (tag =", tag, ", mode =", mode, ", atime =", atime, ", mtime =", mtime, ", length =",… 174 def v9fs_wstat(self, tag, id, fid, mode, atime, mtime): argument 175 …"TWSTAT (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", atime =", atime, "mtime =", mtime,…
|
/openbmc/linux/Documentation/filesystems/ |
H A D | ocfs2.rst | 60 relatime(*) Update atime if the previous atime is older than 62 strictatime Always update atime, but the minimum update interval 64 atime_quantum=60(*) OCFS2 will not update atime unless this number 66 Set to zero to always update atime. This option need
|
H A D | virtiofs.rst | 48 atime behavior 51 The atime-related mount options, for example, noatime, strictatime, 52 are ignored. The atime behavior for virtiofs is the same as the
|
/openbmc/qemu/hw/9pfs/ |
H A D | trace-events | 11 …t tag, uint8_t id, int32_t mode, int32_t atime, int32_t mtime, int64_t length) "tag %d id %d stat=… 35 …nt8_t id, int32_t fid, int32_t mode, int32_t atime, int32_t mtime) "tag %u id %u fid %d stat={mode… 49 …"tag %u id %u fid %d iattr={valid %d mode %d uid %d gid %d size %"PRId64" atime=%"PRId64" mtime=%"…
|
/openbmc/linux/include/linux/ceph/ |
H A D | ceph_fs.h | 417 struct ceph_timespec atime; member 476 struct ceph_timespec atime; member 584 struct ceph_timespec ctime, mtime, atime; member 796 struct ceph_timespec mtime, atime, ctime; member 854 struct ceph_timespec mtime, atime; member
|
/openbmc/linux/drivers/md/ |
H A D | dm-zoned-reclaim.c | 29 unsigned long atime; member 358 return time_is_before_jiffies(zrc->atime + DMZ_IDLE_PERIOD); in dmz_target_idle() 564 zrc->atime = jiffies; in dmz_ctr_reclaim() 628 zrc->atime = jiffies; in dmz_reclaim_bio_acc()
|
/openbmc/linux/fs/gfs2/ |
H A D | glops.c | 409 struct timespec64 atime; in gfs2_dinode_in() local 437 atime.tv_sec = be64_to_cpu(str->di_atime); in gfs2_dinode_in() 438 atime.tv_nsec = be32_to_cpu(str->di_atime_nsec); in gfs2_dinode_in() 439 if (timespec64_compare(&inode->i_atime, &atime) < 0) in gfs2_dinode_in() 440 inode->i_atime = atime; in gfs2_dinode_in()
|
/openbmc/linux/include/linux/ |
H A D | stat.h | 47 struct timespec64 atime; member
|
/openbmc/linux/arch/x86/kernel/ |
H A D | sys_ia32.c | 149 unsafe_put_user(stat->atime.tv_sec, &ubuf->st_atime, Efault); in cp_stat64() 150 unsafe_put_user(stat->atime.tv_nsec, &ubuf->st_atime_nsec, Efault); in cp_stat64()
|
/openbmc/openbmc-tools/ipkdbg/ |
H A D | Makefile | 30 --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | sys_sparc32.c | 82 err |= put_user(stat->atime.tv_sec, &statbuf->st_atime); in cp_compat_stat64() 83 err |= put_user(stat->atime.tv_nsec, &statbuf->st_atime_nsec); in cp_compat_stat64()
|
/openbmc/linux/include/uapi/linux/ |
H A D | fuse.h | 261 uint64_t atime; member 299 struct fuse_sx_time atime; member 736 uint64_t atime; member
|
/openbmc/qemu/include/standard-headers/linux/ |
H A D | fuse.h | 266 uint64_t atime; member 304 struct fuse_sx_time atime; member 752 uint64_t atime; member
|
/openbmc/qemu/fsdev/ |
H A D | 9p-marshal.h | 24 int32_t atime; member
|
H A D | 9p-iov-marshal.c | 158 &statp->mode, &statp->atime, in v9fs_iov_vunmarshal() 264 &statp->qid, statp->mode, statp->atime, in v9fs_iov_vmarshal()
|
/openbmc/linux/Documentation/admin-guide/laptops/ |
H A D | laptop-mode.rst | 452 # Find out the state of a yes/no option (e.g. "atime"/"noatime") in 459 # parse_yesno_opts_wfstab /dev/hda1 atime atime defaults,noatime 462 # will be "defaults,atime". 471 # Watch for a default atime in fstab 645 # Reset commit and atime options to defaults. 652 PARSEDOPTS="$(parse_yesno_opts_wfstab $DEV atime atime $PARSEDOPTS)" 656 PARSEDOPTS="$(parse_yesno_opts_wfstab $DEV atime atime $OPTS)"
|
/openbmc/linux/fs/jffs2/ |
H A D | fs.c | 116 ri->atime = cpu_to_je32(I_SEC((ivalid & ATTR_ATIME)?iattr->ia_atime:inode->i_atime)); in jffs2_do_setattr() 150 inode->i_atime = ITIME(je32_to_cpu(ri->atime)); in jffs2_do_setattr() 285 inode->i_atime = ITIME(je32_to_cpu(latest_node.atime)); in jffs2_iget() 479 ri->atime = ri->mtime = ri->ctime = cpu_to_je32(I_SEC(inode->i_mtime)); in jffs2_new_inode()
|
/openbmc/linux/fs/nilfs2/ |
H A D | Kconfig | 23 Some features including atime, extended attributes, and POSIX ACLs,
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_xdp_noinline.c | 151 __u64 atime; member 553 new_dst_lru.atime = cur_time; in get_packet_dst() 575 if (cur_time - dst_lru->atime > 300000) in connection_table_lookup() 577 dst_lru->atime = cur_time; in connection_table_lookup()
|