Displaying 20 results from an estimated 20 matches for "f_namelen".
Did you mean:
l_namelen
2005 Dec 17
2
[patch] fix defintion of struct statfs64
...tfs {
- uint64_t f_type;
- uint64_t f_bsize;
+ uint32_t f_type;
+ uint32_t f_bsize;
uint64_t f_blocks;
uint64_t f_bfree;
uint64_t f_bavail;
uint64_t f_files;
uint64_t f_ffree;
__kernel_fsid_t f_fsid;
- uint64_t f_namelen;
- uint64_t f_frsize;
- uint64_t f_spare[5];
+ uint32_t f_namelen;
+ uint32_t f_frsize;
+ uint32_t f_spare[5];
};
#endif /* _BITSIZE */
2019 May 05
3
Staged installation fail on some file systems
...2bc1c5d0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
stat("/sys/fs/selinux",...
2019 May 07
2
Staged installation fail on some file systems
...IG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
> > getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
> > statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
> > f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
> > 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
> > statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
> > f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
> > 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
>...
2006 Aug 08
1
[patch] mips fix statfs
please pull from git://charm.itp.tuwien.ac.at/mattems/klibc/.git
branch maks.
arch/mips/klibc/archconfig.h | 3 +++
klibc/sysconfig.h | 10 ++++++++++
sys/vfs.h | 17 +++++++++++++++++
3 files changed, 30 insertions(+)
2019 May 07
0
Staged installation fail on some file systems
...gt; rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
> getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
> statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
> f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
> 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
> statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
> f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
> 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
> stat("/sy...
2016 Jun 15
3
[Bug 11978] New: mkstemp failed: File name too long (36) when filename is under the limit
https://bugzilla.samba.org/show_bug.cgi?id=11978
Bug ID: 11978
Summary: mkstemp failed: File name too long (36) when filename
is under the limit
Product: rsync
Version: 3.1.1
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5
Component: core
2002 Jun 07
0
problem related to filename length
...nc-2.5.5/receiver.c
--- rsync-2.5.5.orig/receiver.c Thu Feb 14 03:41:58 2002
+++ rsync-2.5.5/receiver.c Sat Jun 8 03:41:22 2002
@@ -163,10 +163,16 @@
}
}
+#include <sys/vfs.h>
+static inline int fname_syslimit(const char* path) {
+ struct statfs sb;
+ return !statfs(path,&sb) ? sb.f_namelen : 255;
+}
static int get_tmpname(char *fnametmp, char *fname)
{
char *f;
+ int fn_max;
/* open tmp file */
if (tmpdir) {
@@ -179,7 +185,12 @@
rprintf(FERROR,"filename too long\n");
return 0;
}
- snprintf(fnametmp,MAXPATHLEN, "%s/.%s.XXXXXX",tmpdir,f);
+...
2019 May 09
0
Staged installation fail on some file systems
...[RTMIN RT_1], NULL, 8) = 0
>>> getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
>>> statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
>>> f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
>>> 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME}) = 0
>>> statfs("/sys/fs/selinux", {f_type=SELINUX_MAGIC, f_bsize=4096,
>>> f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0,
>>> 0}, f_namelen=255, f_frsize=4096, f_flags=ST_VALID|ST_RELATIME})...
2018 Jul 02
0
Samba 4.3.11 accessing disk every minute
...72650}, NULL) = 0
stat64(".", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
statfs64(".", 88, {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=1451469082, f_bfree=912073125, f_bavail=897438740, f_files=182882304, f_ffree=182881143, f_fsid={2141529791, -1094344988}, f_namelen=255, f_frsize=4096}) = 0
stat64(".", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
geteuid32() = 1002
stat64(".", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
open("/etc/mtab", O_RDONLY|O_CLOEXEC) = 8
fstat64(8, {st_mode=S_IFREG|0755, s...
2012 Aug 19
5
fail to mount after first reboot
...51G 1.8T 3% /mnt/btrfs0
I would expect to see Size=1T, Used=25G
# strace -v -e trace=statfs df -lh /mnt/btrfs0
statfs("/mnt/btrfs0", {f_type=0x9123683e, f_bsize=4096,
f_blocks=488374272, f_bfree=475264720, f_bavail=474749786, f_files=0,
f_ffree=0, f_fsid={2083217090, -1714407264}, f_namelen=255,
f_frsize=4096}) = 0
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg00-btrfsvol0_0 1.9T 51G 1.8T 3% /mnt/btrfs0
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@vger.kernel.org
More majo...
2008 Mar 31
4
SuSe Hangs when /etc/init.d/o2cb online
Hello,
I have a DELL MD3000i, and a couple of servers that I want to connect to
the array.
I have setup the main server with CentOS 5.
- 2.6.18-53.el5 x86_64
- ocfs2-tools-1.2.7-1.el5
- ocfs2console-1.2.7-1.el5
- ocfs2-2.6.18-53.el5-1.2.8-2.el5 # Kernel Module
And two OpenSuSe 10.3 Servers
- 2.6.22.5-31-default x86_64
- ocfs2-tools-1.2.6-18
- ocfs2console-1.2.6-18
The module has been already
2003 Apr 16
0
Possible bug in samba-2.2.8a-1...
...(11, "\0\0\0#", 4) = 4
read(11, "\377SMB\200\0\0\0\0\10\1\0\0\0\0"..., 35) = 35
gettimeofday({1050510946, 443001}, NULL) = 0
statfs(".", {f_type="EXT2_SUPER_MAGIC", f_bsize=1024, f_blocks=1949119, f_bfree=274728, f_files=65280, f_ffree=24610, f_namelen=255}}) = 0
stat(".", {st_mode=030210, st_size=0, ...}) = 0
open("/proc/mounts", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/mtab", O_RDONLY) = -1 ELOOP (Too many levels of symbolic links)
geteuid() = 2...
2006 Jan 25
1
EXT3: failed to claim external journal device.
We are having problems remounting an ext3 filesystem using an external
journal device. The filesystem in question was working fine until the
server was rebooted.
This is what we see on dmesg when trying to mount:
EXT3: failed to claim external journal device.
The external journal lives on a LVM2 logical volume and it seems to be
accessible ( we can dumpe2fs and see filesystem information).
2009 Jun 11
8
[Bug 1607] New: compile errors buliding OpenSSH for older Red Hat
https://bugzilla.mindrot.org/show_bug.cgi?id=1607
Summary: compile errors buliding OpenSSH for older Red Hat
Product: Portable OpenSSH
Version: 5.2p1
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: unassigned-bugs at mindrot.org
2007 Mar 29
3
tune2fs -l stale info
Hello,
I just noticed that 'tune2fs -l' did not returned a "lively" updated
information regarding the free inodes count (looks like it's always
correct after unmounting). It became suprising after an online resizing
operation, where the total inode count was immediatly updated (grown in
my case) but the free inode count was the same: one could deduce that
suddenly a lot of
2014 Jan 03
1
SSSD and usermod
...) = 0
mprotect(0x7f96bfe45000, 4096, PROT_READ) = 0
munmap(0x7f96bfe3e000, 23522) = 0
statfs("/selinux", {f_type="EXT2_SUPER_MAGIC", f_bsize=4096, f_blocks=70642610, f_bfree=69858788, f_bavail=66270334, f_files=17948672, f_ffree=17645507, f_fsid={-1343244061, 2328842}, f_namelen=255, f_frsize=4096}) = 0
brk(0) = 0x7f96c1860000
brk(0x7f96c1881000) = 0x7f96c1881000
open("/proc/filesystems", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MA...
2011 Aug 03
18
[Bug 734] New: Iptables on Arm Processor with Vanilla Kernel
...(3) = 0
lstat64("/proc/net/ip_tables_names", {st_mode=S_IFREG|0440, st_size=0, ...}) =
0
statfs("/proc/net/ip_tables_names", {f_type="PROC_SUPER_MAGIC", f_bsize=4096,
f_blocks=0, f_bfree=0, f_bavail=0, f_files=0, f_ffree=0, f_fsid={0, 0},
f_namelen=255, f_frsize=4096}) = 0
socket(PF_INET, SOCK_RAW, IPPROTO_RAW) = 3
getsockopt(3, SOL_IP, 0x40 /* IP_??? */,
"filter\0\306\340\234\324\306\324\23\t\300@%\20\300\310\236\324\306\370\7D\307\251\1\0\360\16"...,
[84]) = 0
getsockopt(3, SOL_IP, 0x41 /* IP_??? */, 0xaf090, 0xbecbbad4) = -1 EIN...
2011 May 14
3
Problems building wine 1.3.20 on Mac os x 10.6.7
...ether we can use re-entrant gethostbyname_r Linux style... no
checking for struct statfs.f_bfree... yes
checking for struct statfs.f_bavail... yes
checking for struct statfs.f_frsize... no
checking for struct statfs.f_ffree... yes
checking for struct statfs.f_favail... no
checking for struct statfs.f_namelen... no
checking for struct statvfs.f_blocks... yes
checking for struct msghdr.msg_accrights... no
checking for struct sockaddr.sa_len... yes
checking for struct sockaddr_un.sun_len... yes
checking for scsireq_t.cmd... no
checking for sg_io_hdr_t.interface_id... no
checking for siginfo_t.si_fd... no...
2006 May 18
2
Problems compiling Wine
...king whether linux/joystick.h uses the Linux 2.2+ API... yes
checking for struct statfs.f_bfree... yes
checking for struct statfs.f_bavail... yes
checking for struct statfs.f_frsize... yes
checking for struct statfs.f_ffree... yes
checking for struct statfs.f_favail... no
checking for struct statfs.f_namelen... yes
checking for struct statvfs.f_blocks... yes
checking for struct msghdr.msg_accrights... no
checking for struct sockaddr.sa_len... no
checking for struct sockaddr_un.sun_len... no
checking for scsireq_t.cmd... no
checking for sg_io_hdr_t.interface_id... yes
checking for siginfo_t.si_fd... yes...
2008 Jul 20
26
[PATCH] NFS support for btrfs - v2
Hi,
Here''s an implementation of NFS support for btrfs. It does not work in one
particular case as described in
http://www.mail-archive.com/linux-btrfs@vger.kernel.org/msg00298.html.
This uses the btrfs_iget helper introduced previously.
Comments ?
---
Signed-off-by: Balaji Rao <balajirrao@gmail.com>
diff -r 3f0eee804974 Makefile
--- a/Makefile Thu Jun 26 10:34:20 2008 -0400