Displaying 20 results from an estimated 125 matches for "utimens".
Did you mean:
futimens
2013 May 01
1
[PATCH] tests/c-api: Allow the C API tests to run in parallel.
I'm not going to put this upstream because there's no benefit.
However it is useful to record the patch on the mailing list.
Rich.
2013 Aug 25
1
modules in gnulib that are GPL
gettime
hash
human
memcpy
openat-die
openat-safer
quote
quotearg
readlinkat
save-cwd
symlinkat
timespec
utimens
xstrtol
xstrtoll
xstrtoumax
xvasprintf
I didnt track where they are uses, some of them arent used directly.
2013 Dec 12
3
[PATCH] fuse: provide a stub "flush" implementation (RHBZ#660687).
...ns(-)
diff --git a/fuse/test-fuse.sh b/fuse/test-fuse.sh
index f1e03d0..30b3c31 100755
--- a/fuse/test-fuse.sh
+++ b/fuse/test-fuse.sh
@@ -220,18 +220,17 @@ if truncate --help >/dev/null 2>&1; then
rm -f truncated
fi
-# Disabled because of RHBZ#660687 on Debian.
-# stage Checking utimens and timestamps
-# for ts in 12345 1234567 987654321; do
-# # NB: It's not possible to set the ctime with touch.
-# touch -a -d @$ts timestamp
-# [ "$(stat -c %X timestamp)" -eq $ts ]
-# touch -m -d @$ts timestamp
-# [ "$(stat -c %Y timestamp)" -eq $ts ]
-...
2016 Mar 07
0
[PATCH 2/3] added icat API to retrieve deleted or inaccessible files
...1 deletion(-)
create mode 100644 daemon/tsk.c
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index caba83e..4e2051b 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -179,6 +179,7 @@ guestfsd_SOURCES = \
syslinux.c \
tar.c \
truncate.c \
+ tsk.c \
umask.c \
upload.c \
utimens.c \
diff --git a/daemon/tsk.c b/daemon/tsk.c
new file mode 100644
index 0000000..647d1e7
--- /dev/null
+++ b/daemon/tsk.c
@@ -0,0 +1,114 @@
+/* libguestfs - the guestfsd daemon
+ * Copyright (C) 2016 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it un...
2016 Mar 06
0
[PATCH 1/2] added icat and fls0 APIs
...iserfsprogs
+ sleuthkit
systemd
vim
xz
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index caba83e..4e2051b 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -179,6 +179,7 @@ guestfsd_SOURCES = \
syslinux.c \
tar.c \
truncate.c \
+ tsk.c \
umask.c \
upload.c \
utimens.c \
diff --git a/daemon/tsk.c b/daemon/tsk.c
new file mode 100644
index 0000000..8cc35eb
--- /dev/null
+++ b/daemon/tsk.c
@@ -0,0 +1,122 @@
+/* libguestfs - the guestfsd daemon
+ * Copyright (C) 2009-2016 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ *...
2012 Jul 09
1
[PATCH] NEW API: add new api xfs_info
...src/MAX_PROC_NR | 2 +-
5 files changed, 78 insertions(+), 2 deletions(-)
create mode 100644 daemon/xfs.c
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 9e2a633..afe8874 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -165,6 +165,7 @@ guestfsd_SOURCES = \
utimens.c \
wc.c \
xattr.c \
+ xfs.c \
zero.c \
zerofree.c
guestfsd_LDADD = \
diff --git a/daemon/xfs.c b/daemon/xfs.c
new file mode 100644
index 0000000..8b60b19
--- /dev/null
+++ b/daemon/xfs.c
@@ -0,0 +1,69 @@
+/* libguestfs - the guestfsd daemon
+ * Copyright (C) 2012 Fujitsu Limited.
+ *
+ *...
2012 Jul 16
2
[PATCH V4] NEW API: add new api xfs_info
...C_NR | 2 +-
9 files changed, 325 insertions(+), 1 deletion(-)
create mode 100644 daemon/xfs.c
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 9e2a633..afe8874 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -165,6 +165,7 @@ guestfsd_SOURCES = \
utimens.c \
wc.c \
xattr.c \
+ xfs.c \
zero.c \
zerofree.c
guestfsd_LDADD = \
diff --git a/daemon/xfs.c b/daemon/xfs.c
new file mode 100644
index 0000000..b328d09
--- /dev/null
+++ b/daemon/xfs.c
@@ -0,0 +1,278 @@
+/* libguestfs - the guestfsd daemon
+ * Copyright (C) 2012 Fujitsu Limited.
+ *
+ *...
2016 Mar 07
4
[PATCH 0/3] added The Sleuth Kit and icat API for downloading inaccessible files
The Sleuth Kit is a filesystem forensic tool for accessing disk volumes and extracting digital evidence from.
http://www.sleuthkit.org/
The icat API allows to download a file from a device given its metadata number (inode). It supports multiple filesystem types.
The icat command allows to access to otherwise unreachable files such as filesystem data structures and deleted files which content is
2014 Sep 22
0
[PATCH] fuse: Enable futimens test (RHBZ#1144766).
...unsigned u, u1;
int fd;
struct timeval tv[2];
-#if 0
struct timespec ts[2];
-#endif
acl_t acl;
char *acl_text;
@@ -574,8 +572,6 @@ test_fuse (void)
return -1;
}
-#if 0
- /* Does not work! See https://bugzilla.redhat.com/show_bug.cgi?id=1144766 */
STAGE ("checking utimens");
fd = open ("timestamp", O_WRONLY|O_CREAT|O_TRUNC|O_NOCTTY|O_CLOEXEC, 0644);
@@ -605,7 +601,6 @@ test_fuse (void)
return -1;
}
close (fd);
-#endif
STAGE ("checking writes");
--
2.0.4
2009 Nov 10
0
ANNOUNCE: libguestfs 1.0.78 released
...and library:
http://rwmj.wordpress.com/2009/10/29/virt-win-reg-get-at-the-windows-registry-in-your-windows-guests/
http://rwmj.wordpress.com/2009/10/28/libhivex-windows-registry-hive-extractor-library/
- OCaml bindings for virt-inspector
- RELAX NG schema for virt-inspector
- New APIs: utimens, vfs_type, truncate, truncate_size, lchown,
lstatlist, lxattrlist, readlinklist, case_sensitive_path, find0,
mkfs_b, mke2journal, and more ...
- New program: OCaml viewer
http://rwmj.wordpress.com/2009/09/29/graphical-virt-df/
- Allow stdout to be redirected when running guestfish remo...
2009 Nov 02
4
[PATCH 0/3 VERSION 3 FOR DISCUSSION ONLY] FUSE support for libguestfs
...| 37 +--
bindtests | 13 +
bootstrap | 2 +
configure.ac | 9 +
daemon/Makefile.am | 2 +
daemon/dir.c | 17 +
daemon/file.c | 17 +
daemon/link.c | 51 +++
daemon/stat.c | 68 ++++
daemon/truncate.c | 65 ++++
daemon/utimens.c | 81 ++++
daemon/xattr.c | 205 ++++++++++
fuse/Makefile.am | 62 +++
fuse/dircache.c | 400 +++++++++++++++++++
fuse/dircache.h | 43 ++
fuse/fusexmp.c | 385 +++++++++++++++++++
fuse/fusexmp_fh.c | 495 ++++++++++++++++++++++++
fuse/guestmount.c | 1063 +++...
2009 Mar 18
0
glusterfs bdb backend problem
...or in bad state
cp: closing `/mnt/a': File descriptor in bad state
-------------------------------------------------------------------------------------------
[root at orion28 ~]# tail /var/log/glusterfs/glusterfs.log
2009-03-18 09:31:21 E [fuse-bridge.c:539:fuse_attr_cbk] glusterfs-fuse: 13:
UTIMENS() /a => -1 (Operation not permitted)
2009-03-18 09:32:17 E [fuse-bridge.c:1606:fuse_writev_cbk] glusterfs-fuse: 17:
WRITE => -1 (File descriptor in bad state)
2009-03-18 09:32:17 E [fuse-bridge.c:924:fuse_err_cbk] glusterfs-fuse: 18:
FLUSH() ERR => -1 (File descriptor in bad state)
-----...
2016 Mar 29
2
[PATCH] renamed daemon/tsk.c to daemon/sleuthkit.c
...4
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -171,6 +171,7 @@ guestfsd_SOURCES = \
sfdisk.c \
sh.c \
sleep.c \
+ sleuthkit.c \
stat.c \
statvfs.c \
strings.c \
@@ -179,7 +180,6 @@ guestfsd_SOURCES = \
syslinux.c \
tar.c \
truncate.c \
- tsk.c \
umask.c \
upload.c \
utimens.c \
diff --git a/daemon/sleuthkit.c b/daemon/sleuthkit.c
new file mode 100644
index 0000000..0fe1250
--- /dev/null
+++ b/daemon/sleuthkit.c
@@ -0,0 +1,114 @@
+/* libguestfs - the guestfsd daemon
+ * Copyright (C) 2016 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/o...
2010 Mar 31
3
libguestfs-1.0.85-1.el5.5 - seems no KVM acceleration support included
On Wed, Mar 31, 2010 at 09:26:24PM +0300, Active Systems O? wrote:
> Hi,
>
> As I couldnt find any appropriate bugzilla - so I'll post directly to you. There seems to be a problem with EPEL repo libguestfs-1.0.85-1.el5.5 rpm (x86_64) - for example it is very slow with VM filesystem copy as it does not make use of KVM acceleration (running plain qemu).
> Running
2016 Mar 06
5
[PATCH 0/2] added icat and fls0 APIs for deleted files recovery
As discussed in the topic: https://www.redhat.com/archives/libguestfs/2016-March/msg00018.html
I'd like to add to libguestfs the disk forensics capabilities offered by The Sleuth Kit.
http://www.sleuthkit.org/
The two APIs I'm adding with the patch are a simple example of which type of features TSK can enable.
The icat API it's very similar to the previously added ntfscat_i but it
2010 Dec 07
1
builder-ubuntu libguestfs FAILED build step 4b8f70d46dcfed1489c97f822e263b8615f21ea0
...e-lgpl
double-slash-root
dup2
dup2-tests
errno
errno-tests
error
exitfail
extensions
fchdir
fchdir-tests
fclose
fcntl
fcntl-h
fcntl-h-tests
fcntl-tests
fd-safer-flag
fdopendir
fdopendir-tests
float
fnmatch
fnmatch-tests
fsusage
full-read
full-write
futimens
futimens-tests
getaddrinfo
getaddrinfo-tests
getcwd
getcwd-tests
getdelim
getdelim-tests
getdtablesize
getdtablesize-tests
getgroups
getgroups-tests
getline
getline-tests
getlogin_r
getlogin_r-tests
getpagesize
gettext-h
gettime
gettimeofday
gettimeofday-test...
2011 Mar 04
1
builder-debian libguestfs FAILED build step eda9826d25336bcf661700270c580d4d62128750
...e-lgpl
double-slash-root
dup2
dup2-tests
errno
errno-tests
error
exitfail
extensions
fchdir
fchdir-tests
fclose
fcntl
fcntl-h
fcntl-h-tests
fcntl-tests
fd-safer-flag
fdopendir
fdopendir-tests
float
fnmatch
fnmatch-tests
fsusage
full-read
full-write
futimens
futimens-tests
getaddrinfo
getaddrinfo-tests
getcwd
getcwd-tests
getdelim
getdelim-tests
getdtablesize
getdtablesize-tests
getgroups
getgroups-tests
getline
getline-tests
getlogin_r
getlogin_r-tests
getpagesize
gettext-h
gettime
gettimeofday
gettimeofday-test...
2017 Aug 14
3
[PATCH] builder: templates: debian: use single-partition layout
The previously selected 'atomic' recipe resulted in 2GB swap in a 6GB
volume. Also, we don't really need the boot partition, so just create a
partition using the whole disk space.
---
builder/templates/debian.preseed | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/builder/templates/debian.preseed b/builder/templates/debian.preseed
index
2017 Jul 07
2
[PATCH v3] v2v: docs: VDSM location of virt-v2v log file.
See this bug for background information:
https://bugzilla.redhat.com/show_bug.cgi?id=1350465
Thanks: Tomáš Golembiovský
---
v2v/virt-v2v.pod | 38 ++++++++++++++++++++++++++------------
1 file changed, 26 insertions(+), 12 deletions(-)
diff --git a/v2v/virt-v2v.pod b/v2v/virt-v2v.pod
index e68d75cf8..87dba240b 100644
--- a/v2v/virt-v2v.pod
+++ b/v2v/virt-v2v.pod
@@ -1909,18 +1909,32 @@ that
2017 Aug 12
2
[PATCH] configure: Further split blocks of text in the script output.
Commit 0a94cae15bae7cecb725e78e485708694d347612 added useful
headings to parts of the configure script. This refactors
the code by adding a common macro (‘HEADING’), and also changes
the output so it's clearer at a glance:
--- Checking for Haskell ---
checking for ghc... (cached) ghc
--- Checking for PHP ---
checking for php... (cached) php
checking for phpize... (cached) phpize