]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
SOLARIS: Correct misplaced osi_machdep.h #endif
authorAndrew Deason <adeason@sinenomine.net>
Mon, 2 Apr 2012 21:16:37 +0000 (16:16 -0500)
committerDerrick Brashear <shadow@dementix.org>
Wed, 4 Apr 2012 12:27:40 +0000 (05:27 -0700)
Commit 64778fd7bece52360482f9a51f19b34dac1d2678 removed some '#ifdef
KERNEL' blocks, but for one block in SOLARIS/osi_machdep.h, the wrong
trailing #endif was removed. This effectively makes the last part of
the file Solaris 10+ only, and bypasses the header guard. On systems
before Solaris 10, this causes us to lose the osi_procname definition,
which eventually shows up as an undefined symbol.

So, reinstate the original #endif, and remove the correct #endif
instead.

Reviewed-on: http://gerrit.openafs.org/7042
Reviewed-by: Derrick Brashear <shadow@dementix.org>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
(cherry picked from commit a66268f69a2da0dc21957338eebe5c91b279ddda)

Change-Id: I0edd54c9984c591d56531e4eb210e8374ed8b608
Reviewed-on: http://gerrit.openafs.org/7045
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Alistair Ferguson <alistair.ferguson@mac.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>
src/afs/SOLARIS/osi_machdep.h

index 3e8c886816463dea0960acc2aaa34559da40ce5b..964ac8b3ac2d25e31d50bcd17d38ddf73ed873a0 100644 (file)
@@ -99,7 +99,6 @@ extern kmutex_t afs_global_lock;
 #define ISAFS_GLOCK()  mutex_owned(&afs_global_lock)
 #define osi_InitGlock() \
        mutex_init(&afs_global_lock, "afs_global_lock", MUTEX_DEFAULT, NULL);
-#endif
 
 
 /* Associate the Berkley signal equivalent lock types to System V's */
@@ -144,6 +143,7 @@ struct afs_ifinfo {
   int         metric;
   ipaddr_t    dstaddr;
 };
+#endif /* AFS_SUN510_ENV */
 
 #define osi_procname(procname, size) strncpy(procname, PTOU(ttoproc(curthread))->u_comm, size)