After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 136468 - statfs() accepts 4 args on Solaris, IRIX
statfs() accepts 4 args on Solaris, IRIX
Status: RESOLVED FIXED
Product: gnome-vfs
Classification: Deprecated
Component: Build
2.4.x
Other other
: High normal
: ---
Assigned To: gnome-vfs maintainers
gnome-vfs maintainers
Depends on:
Blocks:
 
 
Reported: 2004-03-07 17:30 UTC by The Written Word
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch (3.62 KB, patch)
2004-03-07 17:30 UTC, The Written Word
none Details | Review
proposed patch (5.15 KB, patch)
2004-03-08 22:31 UTC, Christophe Fergeau
none Details | Review
sync head with the 2.4 branch (4.42 KB, patch)
2004-03-09 20:30 UTC, Christophe Fergeau
none Details | Review

Description The Written Word 2004-03-07 17:30:06 UTC
1. [libgnomevfs/gnome-vfs-utils.c, configure.in]
   statfs() accepts 4 args on Solaris and IRIX. Test for this
   in configure.in. Solaris has the f_fstyp member, not
   f_ftype. Test for this as well.
2. [configure.in]
   Remove GNOME_PLATFORM_GNOME_2 and GNOME_PTHREAD_CHECK macros
   which are noops in GNOME 2.4. Missed AM_CONDITIONAL for
   HAVE_SSL.
Comment 1 The Written Word 2004-03-07 17:30:22 UTC
Created attachment 25295 [details] [review]
Patch
Comment 2 Michiel Sikkes 2004-03-07 18:48:21 UTC
Added PATCH keyword and Priority to High to make it more visible for
the maintainers.
Comment 3 Christophe Fergeau 2004-03-07 19:40:33 UTC
This also applies to gnome-vfs 2.5, doesn't it ?
Comment 4 The Written Word 2004-03-07 19:42:41 UTC
No idea. We're building for GNOME 2.4 and I presume gnome-vfs-2.5.x is
for GNOME 2.6 which we haven't touched.
Comment 5 Christophe Fergeau 2004-03-07 20:25:16 UTC
So this has been mostly fixed in HEAD (in the sun case), see bug
#127193, but your patch looks more generic, so I'd tend use yours
instead of what was applied.
Comment 6 Christophe Fergeau 2004-03-07 21:00:21 UTC
After rereading the bug previously mentioned, Solaris seems to have
statvfs so 
 #if HAVE_STATVFS
 	statfs_result = statvfs (unescaped_path, &statfs_buffer);
 #else
-	statfs_result = statfs (unescaped_path, &statfs_buffer);   
+#if STATFS_ARGS == 2
+	statfs_result = statfs (unescaped_path, &statfs_buffer);
+#elif STATFS_ARGS == 4
+	statfs_result = statfs (unescaped_path, &statfs_buffer,
+		sizeof (statfs_buffer), 0);
+#endif
 #endif  

shouldn't be an issue on Solaris. Did you add that because of Irix ?
For the rest of the patch, I'd tend to do as in HEAD, ie put stuff
around #if defined (__linux__) and #if defined (__sun) since it's
pretty unlikely that ncpfs exists on something else.
Comment 7 Christophe Fergeau 2004-03-07 21:01:02 UTC
The patch which was applied to head: 
http://bugzilla.gnome.org/showattachment.cgi?attach_id=21825
Comment 8 The Written Word 2004-03-07 21:04:27 UTC
IRIX takes a 4-arg statfs(). The ncpfs stuff is most likely
Linux-specific. However, it should fail everywhere else. I really
dislike special-casing ala #ifdef(__sun) or #ifdef(__linux) unless it
is absolutely necessary. Is it really necessary in this case? The code
looks much cleaner without it.

And, this part of the patch is icky:
+#elif defined(__sun)
+		if (strcmp(statfs_buffer.f_basetype, "ncpfs") == 0)
+#endif
We should AC_CHECK_MEMBERS(struct statfs.f_basetype) and #ifdef based
on the result. That's the autoconf way.
Comment 9 Christophe Fergeau 2004-03-07 21:25:51 UTC
If we consider ncpfs being linux specific, it makes no sense to make
the part of the code which special cases ncpfs filesystems portable.
With and #ifdef __linux__, it's immediately obvious that this code was
meant to be linux only.
Comment 10 The Written Word 2004-03-07 21:29:38 UTC
Ok.
Comment 11 Christophe Fergeau 2004-03-08 22:31:11 UTC
Created attachment 25358 [details] [review]
proposed patch
Comment 12 Christophe Fergeau 2004-03-08 22:31:35 UTC
How does that patch look ? Is it working for you ?
Comment 13 The Written Word 2004-03-09 00:29:43 UTC
Yep, that's ok.
Comment 14 Christophe Fergeau 2004-03-09 20:30:01 UTC
I committed this patch to the 2.4 branch, it's included in gnome-vfs
2.4.3 which was just released.
I'm attaching a patch against HEAD to this bug, it corresponds to the
changes I made in the 2.4 branch, but gnome-vfs is currently frozen
for the 2.6.0 so it will be committed after it is released.
Comment 15 Christophe Fergeau 2004-03-09 20:30:50 UTC
Created attachment 25408 [details] [review]
sync head with the 2.4 branch
Comment 16 Alexander Larsson 2004-04-07 07:19:37 UTC
This can go in on HEAD now, since we branched. Maybe we should get it into 2.6.1
too?
Comment 17 Alexander Larsson 2004-04-16 10:49:44 UTC
Checked in on HEAD and gnome-2-6