summaryrefslogtreecommitdiffstats
path: root/source/smbd/quotas.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-01-28 02:15:11 +0000
committerGerald Carter <jerry@samba.org>2003-01-28 02:15:11 +0000
commitd6c22e693efee88c17f1f0f6c861e7101b3fec99 (patch)
tree5b6b2dd2fc152637cce8a0c38317469004b858b2 /source/smbd/quotas.c
parent8d0bde43156f5511df7a5a6865b361ebc2a933eb (diff)
downloadsamba-d6c22e693efee88c17f1f0f6c861e7101b3fec99.tar.gz
samba-d6c22e693efee88c17f1f0f6c861e7101b3fec99.tar.xz
samba-d6c22e693efee88c17f1f0f6c861e7101b3fec99.zip
performance patch from HP-UX folks (cant remember who)
Diffstat (limited to 'source/smbd/quotas.c')
-rw-r--r--source/smbd/quotas.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/source/smbd/quotas.c b/source/smbd/quotas.c
index 90fd4bbdac0..9d3bfe2d64d 100644
--- a/source/smbd/quotas.c
+++ b/source/smbd/quotas.c
@@ -886,10 +886,21 @@ BOOL disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB
#if !defined(__FreeBSD__) && !defined(AIX) && !defined(__OpenBSD__)
char dev_disk[256];
SMB_STRUCT_STAT S;
+
/* find the block device file */
- if ((sys_stat(path, &S)<0) ||
- (devnm(S_IFBLK, S.st_dev, dev_disk, 256, 0)<0)) return (False);
-#endif
+
+#ifdef HPUX
+ /* Need to set the cache flag to 1 for HPUX. Seems
+ * to have a significant performance boost when
+ * lstat calls on /dev access this function.
+ */
+ if ((sys_stat(path, &S)<0) || (devnm(S_IFBLK, S.st_dev, dev_disk, 256, 1)<0))
+#else
+ if ((sys_stat(path, &S)<0) || (devnm(S_IFBLK, S.st_dev, dev_disk, 256, 0)<0))
+ return (False);
+#endif /* ifdef HPUX */
+
+#endif /* !defined(__FreeBSD__) && !defined(AIX) && !defined(__OpenBSD__) */
euser_id = geteuid();