Patch Name: PHCO_29897 Patch Description: s700_800 11.11 VxFS 3.5-ga15 Command Cumulative Patch 03 Creation Date: 04/05/07 Post Date: 04/06/01 Hardware Platforms - OS Releases: s700: 11.11 s800: 11.11 Products: VxFS 3.5-ga15 Filesets: VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=HP VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=VERITAS VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=HP VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=VERITAS Automatic Reboot?: No Status: General Release Critical: Yes PHCO_29897: HANG PHCO_28504: CORRUPTION OTHER HP OnlineJFS license is not getting recognised. Hence some optional features don't work even when a valid license is present. Also, in VxFS3.5 VX_SNAPREAD ioctl was replaced by a new VX_SNAPREAD64 ioctl. This breaks the compatibility for NetBackup to work with both VxFS/JFS3.3 and VxFS3.5. Category Tags: defect_repair general_release critical halts_system corruption Path Name: /hp-ux_patches/s700_800/11.X/PHCO_29897 Symptoms: PHCO_29897: (SR: 8606351776 CR: JAGaf12581) Because of incorrect command usage message and out of sync man page descriptions of some options to fsadm, customers can be surprised depending on what they read in the man page and what they try. (SR: 8606351778 CR: JAGaf12583 ) If both the -e (ext reorg) and the -d (dirsort) options are given to fsadm along with the -t (max time fsadm should run) option (someting like fsadm -de -t 5400 /mnt1) then the timer gets reset incorrectly to start after a dirsort and before a ext reorg. Because of this a customer trying to set an upper limit on the time for which fsadm should run, will see it running longer that expected. (SR: 8606351774 CR: JAGaf12579 ) If a customer runs fsck twice he'll see the messages about incorrect link counts in both runs which, ideally, should have been fixed in a single fsck run. If the customer runs fsck only once and mounts it then FS should work without any problems but running "fsck -n" to check the consistency will reveal incorrect link counts and possibly unreferenced inodes. (SR: 8606338973 CR: JAGae99919) When clones (used by netbackup) are enabled, allocation of typed extents may fail with error value ENOTSUP, which can result in failure of system calls like write() which require allocation. (SR: 8606331821 CR: JAGae92941) fsck fails when file system block system block size is larger than 1k and size of the Extent AU State File (IFEAU) is zero. (SR: 8606331823 CR: JAGae92943) When negative size is given as an option to mkfs_vxfs(1M), the command fails with the error message : "vxfs mkfs: sectors must be positive and <= 2147483647 (1 TB)" The number 2147483647 represents 2TB, but it says 1TB. #mkfs /dev/testvg/rlvol1 -100 vxfs mkfs: sectors must be positive and <= 2147483647 (1 TB) vxfs mkfs: Usage: mkfs [-F vxfs] [-V] -m special mkfs [-F vxfs] [-V] [-o [N] [X] [ninode=#] [bsize=#] [logsize=#] version=#] [largefiles|nolargefiles] [inosize=#] special size (SR: 8606331818 CR: JAGae92938) vxdump(1M) hangs in pause() call. (SR: 8606331824 CR: JAGae92944) When fsck_vxfs(1M) is invoked with the -p option and a special device name of more than 62 characters, the command fails with messages "iput internal error" or "iget_insert internal error". PHCO_29687: (SR: 8606331820 CR: JAGae92940) Man page for vxenablef gives incorrect information for '-a' option. PHCO_28504: ( SR: 8606291997 CR: JAGae55761 ) After VxFS 3.5 is installed, several features available with online jfs license won't work even if online jfs license key is installed on the system. The problem occurs irrespective of whether the license key is installed before or after the VxFS 3.5 installation. ( SR: 8606300112 CR: JAGae63580) Change in libvxfs.a in VxFS3.5 broke NBU, since NBU was linked with VxFS3.5 libvxfs.a, which was no longer compatible with VxFS 3.3/4 kernel. libvxfs/fs_bmap_ext4() can return HOLE for a corrupted bmap. A user can see corrupted data. An extra reboot is required when trying to uninstall GAB package in SPFS. Defect Description: PHCO_29897: (SR: 8606351776 CR: JAGaf12581) VERITAS Incident Number: 109059 Problem Description: There are four problems reported in this incident: 1. In fsadm manpage, in the description of -b option, the option list "-cdDeEo" needs to be changed to "-DEcdefko" to incorporate new options. 2. Both command usage and manpage need to be changed to remove [] for -f, if a filename (and not a mount point) is given to fsadm. 3. fsadm -D /dev/odm says: fsadm: Invalid file system odm whereas it should return something like "not a vxfs file system". 4. Need to change -bcdDeE to -DEcdefkb in manpage. Reason: The problem is occuring because of fsadm options and their man page descriptions being out of sync. Resolution: Following fixes were made to the four problem mentioned above. 1. "-cdDeEo" changed to "-DEcdefko" in fsadm manpage. 2. [] is removed for -f option. 3. The seemingly incorrect message is coming from the HP's fsadm (/usr/sbin/fsadm) and not vxfs fsadm and therefore nothing to be fixed in vxfs fsadm. 4. -bcdDeE is changed to -DEcdefkb in fsadm manpage. (SR: 8606351778 CR: JAGaf12583 ) VERITAS Incident Number: 140095 ProblemDescription: The problem can be seen if both -d and -e option are given to fsadm along with the -t option. A way to see this problem is using the truss of fsadm run: truss fsadm -de -t 5400 /mnt1 | grep alarm will show: alarm(5400) - alarm set to 5400 at the start of the program. alarm(5400) - second alarm wrongly reset to start (5400) before ext reorg. Supposing that the dirsort took 10 seconds, the second alarm should have been: alarm(5390). Resolution: The problem is solved by resetting the timer alarm to the time that remains for the fsadm to run, rather than resetting it to the start. After the fix, truss fsadm -de -t 5400 /mnt1 | grep alarm shows: alarm(5400) - alarm set to 5400 at the start of the program. alarm(5390) - second alarm reset properly to the time left during ext reorg which is correct. (SR: 8606351774 CR: JAGaf12579 ) VERITAS Incident Number: 93663 Problem Description: The problem was caused due to incomplete enhancement done to make fsck work faster in presence of clones while examining directory sanity. Reason: While checking directory sanity, we do not restart the process if we find that directory block of clone has changed and needs to be pulled. Instead, we try to continue sanity checking from the point we left (after pulling the requisite directory block). Now if we perform sanity check on a directory block twice (due to a bug in code), we will get incorrect link counts in the global link count table leading to messages seen in the symptoms. Now if full fsck is run again, it will correctly figure out the link counts (since we have already pulled the directory block in the clone and won't be interrupted again) and we will see similar messages again. So,it will take 2 full fsck runs to fix the problem. Problem will occur if a clone chain is present, and if there is corruption which will require the directory block to be pulled to a clone. Resolution: fsck code was fixed to take care of the problem. (SR: 8606338973 CR: JAGae99919) Problem Description: VERITAS Incident number: 132088 When clones are enabled, entering a new typed extent can causes ted assert f:vx_enter_typed:2 in vx_enter_typed() and error ENOTSUP may be returned from allocation. Reason: vx_reorg_settype() is called by vx_extmap_reorg() which ends up creating two extents in the overlay inode: a. one at offset 0, size 0x7fffffff b. one at offset 0x7fffffff of size 1 This may cause overlap with the last extent in the bmap of the reorg inode while entering new typed extent. Resolution: Modified function vx_make_overlay() to create extents of size 0x80000000 instead of size 0x7fffffff. (SR: 8606331821 CR: JAGae92941) Problem Description : VERITAS Incident Number : 113301 VxFS 3.5 fsck can not handle a zero sized Extent AU State file if file system block size is larger than 1k. If the size of an Extent AU State file is corrupted and becomes zero and if the file system block size is larger than 1k, fsck cannot fix the corruption. It can be reproduced by zeroing out size of IFEAU inodes: # mkfs -F vxfs -o bsize=8192 /dev/vx/rdsk/vrdg/testvol # fsdb -F vxfs /dev/vx/rdsk/vrdg/testvol > olt OLT at 0x0000000c.0000 OLT initial iext entry: olt_type 4 olt_size 16 olt_iext[8 2306] > 2306b.p I inode structure at 0x00000902.0000 type IFEAU mode 2500000777 nlink 1 uid 0 gid 0 size 8192 > 2306b.+5W=0x0 // zero the size field 00000902.0014: 00000000 > q #fsck -F vxfs -o full -y /dev/vx/rdsk/vrdg/testvol log replay in progress UX:vxfs fsck: ERROR: fsck write failure bno = 0, off = 2237936, len = 0 full file system check required, exiting ... Reason : During log replay, fsck needs to rebuild the AU summaries. If size of IFEAU is zero, fsck will not attempt to read the AU summaries from disk but the read buffer is left uninitialized which causes fsck to fail subsequently. Resolution : Fixed by marking file-system for full fsck and failing the log replay if size of IFEAU is zero. (SR: 8606331823 CR: JAGae92943) Problem Description: VERITAS Incident Number : 114101 Typo in mkfs_vxfs(1M) error message results in confusion of the maximum filesystem size supported. #mkfs /dev/testvg/rlvol1 -100 vxfs mkfs: sectors must be positive and <= 2147483647 (1 TB) ^^^^^^^^^^^ vxfs mkfs: Usage: mkfs [-F vxfs] [-V] -m special In the above error message, the large number,2147483647, represent 2TB. But it is showing 1TB. Resolution: The error message was modified to print the correct maximum filesystem size. (SR: 8606331818 CR: JAGae92938) Problem Description : VERITAS Incident Number : 96190 There was a bug in the signal handler for co-ordinating the tape IO handling among slaves vxdump processes. The signal handler actually failed to be installed but vxdump didn't abort. The problem can be reproduced by running the following script, after a while vxdump hangs: ---- #! /usr/bin/sh while true do count=`expr ${count:=0} + 1` echo pass $count non-MR mt -t /dev/rmt/0mn rew vxdump 1usdbf 90000 3000 24 /dev/rmt/0mn /mnt3 mt -t /dev/rmt/0mn rew mt -t /dev/rmt/0mn fsf 2 vxdump 1usdbf 90000 3000 24 /dev/rmt/0mn /mnt4 mt -t /dev/rmt/0mn rew mt -t /dev/rmt/0mn fsf 3 vxdump 1usdbf 90000 3000 24 /dev/rmt/0mn /mnt5 mt -t /dev/rmt/0mn rew done ---- Resolution : Fixed the bug in the signal handler and modified vxdump such it aborts if the signal handler cannot be installed. (SR: 8606331824 CR: JAGae92944) Problem Description: VERITAS Incident Number: 129819 A buffer overflow results when the special device name exceeds 62 characters. Resolution: The buffer size is increased to avoid the overflow. PHCO_29687: (SR: 8606331820 CR: JAGae92940) Problem Description: VERITAS Incident Number: 104304 (125643) Description of '-a' option in the man page for vxenablef is incorrect. The description is valid for JFS3.3 but it is not updated correctly to reflect the change in VxFS3.5. Resolution : Manpage for vxenablef is changed to reflect the correct option description. PHCO_28504: ( SR: 8606291997 CR: JAGae55761 ) Problem Description: VERITAS Incident number: 114432 An incorrect string was passed to a function responsible for checking the online JFS license key. As a result features enabled through the online JFS license would still be unavailable even though the license was installed. Reason: The problem occurs due to a bug in VxFS 3.5 whereby an incorrect string was passed to the licensing software API to check for presence of the online JFS license. Resolution: The defect is fixed by a passing a correct string to the function responsible for checking the online JFS license key. ( SR: 8606300112 CR: JAGae63580) Problem Description: VERITAS Incident number: 114352 One of the ioctls exported to commands/applications was supplemented by a purely 64bit version of it. However the library that made use of this ioctl, did not have correct set of changes to make use of the old and new ioctl. This affected the commands and the applications that have been linked with the library. Reason: Since the library did not have support for handling old ioctl, the old ioctl fails in case of VxFS3.5. Resolution: The libvxfs.a library now makes use of both the old and new version of the ioctl. Problem Description: VERITAS Incident number: 115863 In a vxfs routine proper error checking is not done which might lead to corruption of a bitmap. Reason: The libvxfs/bmap.c/fs_bmap_ext4() problem occurs due to a bug in vxfs code. Resolution: The libvxfs/bmap.c/fs_bmap_ext4() problem is resolved by fixing the bug in vxfs code. Problem Description : VERITAS Incident number: 104036 120116 VxFS(CFS) and Qlog register with GAB and they never unregister. Since VxFS and Qlog are not dynamically loadable modules an extra reboot when trying to uninstall SPFS. Reason : There was no mechanism by which CFS and Qlog can unregister from GAB. Resolution : The 'fsclustadm' and the 'qlogclustadm commands have been enhanced to unregister VxFS and Qlog from gab ports. The vx_admin_ioctl has been enhanced to accept a new ioctl command VX_CFS_DEINIT and similarly, the ql_clust_ioctl has been enhanced to accept a new ioctl command QL_CLUST_DEINIT. Enhancement: No SR: 8606331820 8606331821 8606331823 8606331818 8606331824 8606291997 8606300112 8606338973 8606351776 8606351778 8606351774 Patch Files: VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=HP: VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=VERITAS: /sbin/fs/vxfs3.5/fsdb /sbin/fs/vxfs3.5/vxumount /sbin/fs/vxfs3.5/vxenablef /sbin/fs/vxfs3.5/vxdump /sbin/fs/vxfs3.5/fsck /sbin/fs/vxfs3.5/mkfs /usr/lbin/fs/vxfs3.5/ff /usr/lbin/fs/vxfs3.5/fsadm /usr/lbin/fs/vxfs3.5/ncheck /usr/lbin/fs/vxfs3.5/vxdump /usr/sbin/fsclustadm /usr/sbin/qlogclustadm /opt/VRTSvxms/lib/map/libvxfs.sl /opt/VRTSvxms/lib/map/pa20_64/libvxfs.sl VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64, v=HP: VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64, v=VERITAS: /usr/share/man/fs/vxfs3.5/man1m.Z/fsclustadm.1m /usr/share/man/fs/vxfs3.5/man1m.Z/qlogclustadm.1m /usr/share/man/fs/vxfs3.5/man1m.Z/vxenablef.1m /usr/share/man/fs/vxfs3.5/man1m.Z/fsadm_vxfs.1m what(1) Output: VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=HP: /sbin/fs/vxfs3.5/vxumount: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: $Header: NAME: License Manager with ELM Support VERS ION: 3.00.007 BUILT: Jun 13 2002 12:03:35 Co pyright 2002 VERITAS SOFTWARE Corporation. All Rights Reserved. $ $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /sbin/fs/vxfs3.5/fsck: bmap.c $Date: 12/03/03 05:10:08 $Revision: 3.54.53.2 PATCH_11.11 (PHCO_29897) inode.c $Date: 09/10/03 04:36:20 $Revision: 3.121.53 .1 PATCH_11.11 (PHCO_29897) main.c $Date: 04/04/02 23:41:11 $Revision: 3.71 PATC H_11.11 (PHCO_29897) replay.c $Date: 07/03/03 09:27:15 $Revision: 3.34.53 .1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) $Header: NAME: License Manager with ELM Support VERS ION: 3.00.007 BUILT: Jun 13 2002 12:03:35 Co pyright 2002 VERITAS SOFTWARE Corporation. All Rights Reserved. $ $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /sbin/fs/vxfs3.5/fsdb: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /sbin/fs/vxfs3.5/vxenablef: vxenablef.c $Date: 05/13/03 00:40:49 $Revision: 3.8. 53.2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: $Header: NAME: License Manager with ELM Support VERS ION: 3.00.007 BUILT: Jun 13 2002 12:03:35 Co pyright 2002 VERITAS SOFTWARE Corporation. All Rights Reserved. $ $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /sbin/fs/vxfs3.5/vxdump: main.c $Date: 01/11/02 03:46:54 $Revision: 3.50 PATC H_11.11 (PHCO_29897) tape.c $Date: 07/29/03 05:19:21 $Revision: 3.19.53.1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) $ Internal_Unsupported_Version Oct 11 2000 19:17:37 $ /usr/lbin/fs/vxfs3.5/vxdump: main.c $Date: 01/11/02 03:46:54 $Revision: 3.50 PATC H_11.11 (PHCO_29897) tape.c $Date: 07/29/03 05:19:21 $Revision: 3.19.53.1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) /sbin/fs/vxfs3.5/mkfs: mkfs.c $Date: 09/16/03 05:13:03 $Revision: 3.76.53.1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) $Header: NAME: License Manager with ELM Support VERS ION: 3.00.007 BUILT: Jun 13 2002 12:03:35 Co pyright 2002 VERITAS SOFTWARE Corporation. All Rights Reserved. $ $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /usr/lbin/fs/vxfs3.5/ff: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) /usr/lbin/fs/vxfs3.5/fsadm: extent.c $Date: 02/03/04 10:21:44 $Revision: 3.46.53 .1 PATCH_11.11 (PHCO_29897) osdep.c $Date: 12/04/03 04:04:42 $Revision: 3.17.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) $Header: NAME: License Manager with ELM Support VERS ION: 3.00.007 BUILT: Jun 13 2002 12:03:35 Co pyright 2002 VERITAS SOFTWARE Corporation. All Rights Reserved. $ /usr/lbin/fs/vxfs3.5/ncheck: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) /usr/sbin/fsclustadm: fsclustadm.c $Date: 04/08/03 03:27:43 $Revision: 3.2 4.53.1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: comms:llt/include/sys/llt.h mcl comms:llt/lib/lltdb.c 1.4 comms:llt/include/sys/llt.h mcl /usr/sbin/qlogclustadm: qlogclustadm.c $Date: 04/08/03 03:27:53 $Revision: 3 .11.53.1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: comms:llt/lib/lltdb.c 1.4 comms:llt/include/sys/llt.h mcl comms:llt/include/sys/llt.h mcl $ Internal_Unsupported_Version Oct 11 2000 19:23:32 $ /opt/VRTSvxms/lib/map/libvxfs.sl: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: /opt/VRTSvxms/lib/map/pa20_64/libvxfs.sl: extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) devops.c $Date: 11/04/03 01:12:47 $Revision: 3.51.53 .2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) rdwri.c $Date: 02/20/03 22:22:56 $Revision: 3.21.53. 2 PATCH_11.11 (PHCO_29897) extern.h $Date: 01/30/03 00:54:36 $Revision: 3.9.53. 1 PATCH_11.11 (PHCO_29897) proto.h $Date: 11/03/03 01:24:58 $Revision: 3.39.53. 1 PATCH_11.11 (PHCO_29897) bmap.c $Date: 11/05/03 01:48:43 $Revision: 3.38.53.2 PATCH_11.11 (PHCO_29897) bmap.c $Date: bmap.c $Date: $Revision: VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64, v=HP: /usr/share/man/fs/vxfs3.5/man1m.Z/fsclustadm.1m: None /usr/share/man/fs/vxfs3.5/man1m.Z/qlogclustadm.1m: None /usr/share/man/fs/vxfs3.5/man1m.Z/vxenablef.1m: None /usr/share/man/fs/vxfs3.5/man1m.Z/fsadm_vxfs.1m: None cksum(1) Output: VRTSvxfs.VXFS-RUN,fr=3.5-ga15,fa=HP-UX_B.11.11_64,v=HP: 1032043565 1019904 /sbin/fs/vxfs3.5/vxumount 2058602604 202056 /opt/VRTSvxms/lib/map/pa20_64/libvxfs.sl 2414961699 1101824 /sbin/fs/vxfs3.5/mkfs 2470194415 143360 /usr/lbin/fs/vxfs3.5/vxdump 2565289268 1282048 /sbin/fs/vxfs3.5/fsck 2593930430 86016 /usr/sbin/fsclustadm 2944689390 233472 /opt/VRTSvxms/lib/map/libvxfs.sl 3084431867 421888 /sbin/fs/vxfs3.5/vxdump 361397736 98304 /usr/lbin/fs/vxfs3.5/ff 3894699631 364544 /usr/sbin/qlogclustadm 393882572 114688 /usr/lbin/fs/vxfs3.5/ncheck 4175616550 1019904 /sbin/fs/vxfs3.5/vxenablef 4265369721 421888 /sbin/fs/vxfs3.5/fsdb 798972160 724992 /usr/lbin/fs/vxfs3.5/fsadm VRTSvxfs.VXFS-ENG-A-MAN,fr=3.5-ga15,fa=HP-UX_B.11.11_64, v=HP: 1949576736 2996 /usr/share/man/fs/vxfs3.5/man1m.Z/ fsclustadm.1m 3436688502 3646 /usr/share/man/fs/vxfs3.5/man1m.Z/ qlogclustadm.1m 2783771706 1389 /usr/share/man/fs/vxfs3.5/man1m.Z/ vxenablef.1m 2467390845 12421 /usr/share/man/fs/vxfs3.5/man1m.Z/ fsadm_vxfs.1m Patch Conflicts: None Patch Dependencies: s700: 11.11: PHKL_29896 s800: 11.11: PHKL_29896 Hardware Dependencies: None Other Dependencies: None Supersedes: PHCO_29687 PHCO_28504 Equivalent Patches: None Patch Package Size: 3170 KBytes Installation Instructions: Please review all instructions and the Hewlett-Packard SupportLine User Guide or your Hewlett-Packard support terms and conditions for precautions, scope of license, restrictions, and, limitation of liability and warranties, before installing this patch. ------------------------------------------------------------ 1. Back up your system before installing a patch. 2. Login as root. 3. Copy the patch to the /tmp directory. 4. Move to the /tmp directory and unshar the patch: cd /tmp sh PHCO_29897 5. Run swinstall to install the patch: swinstall -x autoreboot=true -x patch_match_target=true \ -s /tmp/PHCO_29897.depot By default swinstall will archive the original software in /var/adm/sw/save/PHCO_29897. If you do not wish to retain a copy of the original software, include the patch_save_files option in the swinstall command above: -x patch_save_files=false WARNING: If patch_save_files is false when a patch is installed, the patch cannot be deinstalled. Please be careful when using this feature. For future reference, the contents of the PHCO_29897.text file is available in the product readme: swlist -l product -a readme -d @ /tmp/PHCO_29897.depot To put this patch on a magnetic tape and install from the tape drive, use the command: dd if=/tmp/PHCO_29897.depot of=/dev/rmt/0m bs=2k Special Installation Instructions: None