/openbmc/openbmc/poky/meta/recipes-devtools/dpkg/dpkg/ |
H A D | 0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch | 4 Subject: [PATCH] dpkg-deb/build.c: Remove usage of --clamp-mtime in tar 9 Recently dpkg added --clamp-mtime to tar to create reproducible 37 - "--mtime", mtime, "--clamp-mtime", NULL); 38 + "--mtime", mtime, NULL);
|
/openbmc/openbmc/poky/meta/recipes-devtools/ruby/ruby/ |
H A D | 0003-rdoc-build-reproducible-documentation.patch | 24 - gz.mtime = File.mtime(search_index_file) 25 + gz.mtime = -1 33 - gz.mtime = File.mtime(dest) 34 + gz.mtime = -1
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
H A D | rdist-6.1.5-lfs.patch | 56 - debugmsg(DM_MISC, "update(%s,) size %d mtime %d owner '%s' grp '%s'\n", 57 - rname, (int) size, mtime, owner, group); 58 + debugmsg(DM_MISC, "update(%s,) size %lld mtime %d owner '%s' grp '%s'\n", 59 + rname, (off_t) size, mtime, owner, group); 61 if (statp->st_mtime != mtime) { 62 if (statp->st_mtime < mtime && IS_ON(opts, DO_YOUNGER)) { 100 - "recvit: opts = %04o mode = %04o size = %d mtime = %d", 101 + "recvit: opts = %04o mode = %04o size = %lld mtime = %d", 102 opts, mode, size, mtime);
|
/openbmc/linux/init/ |
H A D | initramfs.c | 125 static void __init do_utime(char *filename, time64_t mtime) in do_utime() argument 127 struct timespec64 t[2] = { { .tv_sec = mtime }, { .tv_sec = mtime } }; in do_utime() 131 static void __init do_utime_path(const struct path *path, time64_t mtime) in do_utime_path() argument 133 struct timespec64 t[2] = { { .tv_sec = mtime }, { .tv_sec = mtime } }; in do_utime_path() 140 time64_t mtime; member 144 static void __init dir_add(const char *name, time64_t mtime) in dir_add() argument 154 de->mtime = mtime; in dir_add() 163 do_utime(de->name, de->mtime); in dir_utime() 168 static void __init do_utime(char *filename, time64_t mtime) {} in do_utime() argument 169 static void __init do_utime_path(const struct path *path, time64_t mtime) {} in do_utime_path() argument [all …]
|
/openbmc/linux/fs/squashfs/ |
H A D | squashfs_fs.h | 274 __le32 mtime; member 283 __le32 mtime; member 293 __le32 mtime; member 304 __le32 mtime; member 315 __le32 mtime; member 327 __le32 mtime; member 339 __le32 mtime; member 353 __le32 mtime; member 370 __le32 mtime; member 384 __le32 mtime; member
|
/openbmc/openbmc/poky/meta/recipes-devtools/dosfstools/dosfstools/ |
H A D | source-date-epoch.patch | 39 struct tm *mtime; 49 - mtime = (now != (time_t)-1) ? localtime(&now) : NULL; 62 + mtime = gmtime(&now); 65 + mtime = (now != (time_t)-1) ? localtime(&now) : NULL; 68 if (mtime && mtime->tm_year >= 80 && mtime->tm_year <= 207) { 69 de.time = htole16((unsigned short)((mtime->tm_sec >> 1) + 70 (mtime->tm_min << 5) +
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | reproducible.py | 50 # 3. Use the mtime of "known" files such as NEWS, CHANGELOG, ... 68 mtime = int(os.lstat(filepath).st_mtime) 70 if not source_date_epoch or mtime > source_date_epoch: 71 source_date_epoch = mtime 140 mtime = int(os.lstat(filename).st_mtime) 142 mtime = 0 143 if not source_date_epoch or mtime > source_date_epoch: 144 source_date_epoch = mtime
|
H A D | sstatesig.py | 407 bb.warn("Could not obtain mtime for {}".format(fullpath)) 431 mtime = get_time(fullpath) 432 if mtime: 433 hashfiles[taskhash] = {'path':fullpath, 'sstate':False, 'time':mtime} 439 mtime = get_time(fullpath) 440 if mtime: 441 hashfiles[hashval] = {'path':fullpath, 'sstate':False, 'time':mtime} 472 mtime = get_time(fullpath) 473 if mtime: 474 hashfiles[actual_hashval] = {'path':fullpath, 'sstate':True, 'time':mtime}
|
/openbmc/linux/arch/um/drivers/ |
H A D | cow_user.c | 27 time32_t mtime; member 46 time32_t mtime; member 78 * definition, leading on 64-bit systems to 4 bytes of padding after mtime, to 89 __u32 mtime; member 101 __s64 mtime; member 235 cow_printf("write_cow_header - backing file '%s' mtime " in write_cow_header() 249 header->mtime = htobe32(modtime); in write_cow_header() 317 *mtime_out = header->v1.mtime; in read_cow_header() 330 *mtime_out = be32toh(header->v2.mtime); in read_cow_header() 344 *mtime_out = be32toh(header->v3.mtime); in read_cow_header() [all …]
|
/openbmc/linux/fs/f2fs/ |
H A D | gc.c | 339 unsigned long long mtime = 0; in get_cb_cost() local 347 mtime += get_seg_entry(sbi, start + i)->mtime; in get_cb_cost() 350 mtime = div_u64(mtime, usable_segs_per_sec); in get_cb_cost() 356 if (mtime < sit_i->min_mtime) in get_cb_cost() 357 sit_i->min_mtime = mtime; in get_cb_cost() 358 if (mtime > sit_i->max_mtime) in get_cb_cost() 359 sit_i->max_mtime = mtime; in get_cb_cost() 361 age = 100 - div64_u64(100 * (mtime - sit_i->min_mtime), in get_cb_cost() 410 if (cur_ve->mtime > next_ve->mtime) { in f2fs_check_victim_tree() 413 cur_ve->mtime, next_ve->mtime); in f2fs_check_victim_tree() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | checksum.py | 21 # mtime cache (non-persistent) 46 # Checksum + mtime cache (persistent) 60 (mtime, hashval) = entry 61 if cmtime == mtime: 64 bb.debug(2, "file %s changed mtime, recompute checksum" % f)
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop/ |
H A D | gnome-desktop-thumbnail-don-t-assume-time_t-is-long.patch | 15 g_snprintf (mtime_str, 21, "%" G_GINT64_FORMAT, (gint64) mtime) 47 thumb_mtime_str = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::MTime"); 56 if (mtime != thumb_mtime)
|
/openbmc/linux/fs/vboxsf/ |
H A D | file.c | 188 * side, we do a "stat" on the host side, then compare the mtime with the 189 * last known mtime and invalidate the page-cache if they differ. 196 * 2) Do another "stat" and compare mtime again. Unfortunately the vboxsf 200 * 2a) "stat" and compare mtime, on stat failure invalidate the cache 201 * 2b) "stat" and compare mtime, on stat failure do nothing 299 /* mtime changed */ in vboxsf_writepage() 334 /* mtime changed */ in vboxsf_write_end()
|
/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 */ 51 tp[1] = sbuf.st_mtime; /* preserve mtime */ 60 tp[1] = sbuf.st_mtime; /* preserve mtime */ 101 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 136 /* set atime to now, mtime a second earlier */ 150 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 178 tp[1] = sbuf.st_mtime; /* preserve mtime */ 196 tp[1] = sbuf.st_mtime; /* preserve mtime */ 237 tp[0] = sbuf.st_atime; /* preserve atime and mtime */ 265 tp[1] = sbuf.st_mtime; /* preserve mtime */ [all …]
|
/openbmc/qemu/hw/9pfs/ |
H A D | trace-events | 11 …_t id, int32_t mode, int32_t atime, int32_t mtime, int64_t length) "tag %d id %d stat={mode %d ati… 35 …t32_t fid, int32_t mode, int32_t atime, int32_t mtime) "tag %u id %u fid %d stat={mode %d atime %d… 49 …d %u fid %d iattr={valid %d mode %d uid %d gid %d size %"PRId64" atime=%"PRId64" mtime=%"PRId64" }"
|
/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 …TAT (tag =", tag, ", fid =", fid, ", mode =", oct(mode), ", atime =", atime, "mtime =", mtime, ")")
|
/openbmc/u-boot/fs/btrfs/ |
H A D | btrfs.c | 32 time_t mtime; in readdir_callback() local 40 mtime = inode.mtime.sec; in readdir_callback() 41 ctime_r(&mtime, filetime); in readdir_callback()
|
/openbmc/linux/fs/smb/client/ |
H A D | fscache.h | 53 struct timespec64 mtime = inode_get_mtime(inode); in cifs_fscache_fill_coherency() local 56 cd->last_write_time_sec = cpu_to_le64(mtime.tv_sec); in cifs_fscache_fill_coherency() 57 cd->last_write_time_nsec = cpu_to_le32(mtime.tv_nsec); in cifs_fscache_fill_coherency()
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | cml1.bbclass | 48 mtime = os.path.getmtime(config) 51 mtime = 0 69 if newmtime > mtime:
|
/openbmc/linux/fs/hostfs/ |
H A D | hostfs_user.c | 33 p->mtime.tv_sec = buf->st_mtime; in stat64_to_hostfs() 34 p->mtime.tv_nsec = 0; in stat64_to_hostfs() 248 times[1].tv_sec = st.mtime.tv_sec; in set_attr() 249 times[1].tv_usec = st.mtime.tv_nsec / 1000; in set_attr() 272 attrs->ia_mtime = st.mtime; in set_attr()
|
/openbmc/openbmc-tools/ipkdbg/ |
H A D | Makefile | 27 --clamp-mtime \ 28 --mtime="@${SOURCE_DATE_EPOCH}" \
|
/openbmc/openbmc/poky/bitbake/lib/bb/parse/ |
H A D | __init__.py | 65 def check_mtime(f, mtime): argument 72 return current_mtime == mtime 86 logger.debug("Updating mtime cache for %s" % f)
|
/openbmc/linux/fs/ |
H A D | stat.c | 61 stat->mtime = inode->i_mtime; in generic_fillattr() 343 tmp.st_mtime = stat->mtime.tv_sec; in cp_old_stat() 420 tmp.st_mtime = stat->mtime.tv_sec; in cp_new_stat() 424 tmp.st_mtime_nsec = stat->mtime.tv_nsec; in cp_new_stat() 563 tmp.st_mtime = stat->mtime.tv_sec; in cp_new_stat64() 564 tmp.st_mtime_nsec = stat->mtime.tv_nsec; in cp_new_stat64() 647 tmp.stx_mtime.tv_sec = stat->mtime.tv_sec; in cp_statx() 648 tmp.stx_mtime.tv_nsec = stat->mtime.tv_nsec; in cp_statx() 736 tmp.st_mtime = stat->mtime.tv_sec; in cp_compat_stat() 737 tmp.st_mtime_nsec = stat->mtime.tv_nsec; in cp_compat_stat()
|
/openbmc/u-boot/arch/riscv/lib/ |
H A D | sifive_clint.c | 19 /* mtime compare register */ 21 /* mtime register */
|
/openbmc/linux/fs/hfs/ |
H A D | catalog.c | 38 __be32 mtime = hfs_mtime(); in hfs_cat_build_record() local 44 rec->dir.CrDat = mtime; in hfs_cat_build_record() 45 rec->dir.MdDat = mtime; in hfs_cat_build_record() 56 rec->file.CrDat = mtime; in hfs_cat_build_record() 57 rec->file.MdDat = mtime; in hfs_cat_build_record()
|