OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
From: IT Resource Center (support_feedbackus-support.external.hp.com)
Date: Sun Jan 07 2001 - 07:02:12 CST

  • Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

                            HP Support Information Digests

    ===============================================================================
    o IT Resource Center World Wide Web Service
       ---------------------------------------------------

       If you subscribed through the IT Resource Center and would
       like to be REMOVED from this mailing list, access the
       IT Resource Center on the World Wide Web at:

         http://itrc.hp.com/

       Login using your IT Resource Center User ID and Password.
       Then select Support Information Digests (located under
       Maintenance and Support). You may then unsubscribe from the
       appropriate digest.

       To download a patch referenced below, access the
       IT Resource Center on the World Wide Web at:

         http://itrc.hp.com/

       Login using your IT Resource Center User ID and Password.
       Then select Individual Patches (under Maintenance and Support)
       to access the patch. You may also download a patch via anonymous
       ftp(1) from ftp.itrc.hp.com.
    ===============================================================================


    Digest Name: weekly HP-UX series 800 11.X patch digest
        Created: Sun Jan 7 3:05:07 PST 2001

    Table of Contents:

    Document ID Title
    --------------- -----------
    PHNE_23068 s700_800 11.04 (VVOS) inetd(1M) cumulative patch
    PHKL_22856 s700_800 11.00 SCSI Tape (stape) cumulative

    The documents are listed below.
    -------------------------------------------------------------------------------


    Document ID: PHNE_23068
    Date Loaded: 20010105
          Title: s700_800 11.04 (VVOS) inetd(1M) cumulative patch

    Patch Name: PHNE_23068

    Patch Description: s700_800 11.04 (VVOS) inetd(1M) cumulative patch

    Creation Date: 01/01/02

    Post Date: 01/01/05

    Hardware Platforms - OS Releases:
            s700: 11.04
            s800: 11.04

    Products: N/A

    Filesets:
            InternetSrvcs.INETSVCS-INETD,fr=B.11.04,fa=HP-UX_B.11.04_32/64,v=HP
            InternetSrvcs.INET-ENG-A-MAN,fr=B.11.04,fa=HP-UX_B.11.04_32/64,v=HP

    Automatic Reboot?: No

    Status: General Release

    Critical: No

    Category Tags:
            defect_repair general_release

    Path Name: /hp-ux_patches/s700_800/11.X/PHNE_23068

    Symptoms:
            PHNE_23068:
            Repackage HP-UX patch PHNE_21835 for VVOS 11.04.

            Based on HP-UX patch PHNE_21835:

            1. JAGad03290 /SR 8606134150:
               inetd is not working properly.

            2. JAGaa27205 /SR 5003424598:
               "swait" option was not documented in "inetd.conf.4"
               manpage.

            3. JAGaa27237 /SR 5003426296:
               When a user changes the field "wait" to "swait" or
               vice-versa in the configuration file "/etc/inetd.conf",
               and runs "inetd -c" to reflect the above change, the
               same is not getting reflected.

            4. JAGaa27203 /SR 5003426304:
               inetd was logging incorrect source address for the
               services in "swait" state.

            5. JAGaa95817 /SR 8606147527:
               The listen backlog requested by inetd is too small.

            6. JAGac40194 /SR 8606124802:
               Child inetd process may hang for non-root service on
               trusted 11.0 system.

            Based on HP-UX patch PHNE_17027:

            1. Inetd does not detect that the services' listen
               socket is invalid.

            2. On systems where auditing is enabled when inetd
               is started or stopped, user id displayed in the
               log is ???? instead of root.

            3. Inetd may terminate in circumstances where it should
               not.

            4. Inetd startup script /sbin/init.d/inetd does
               not handle exit codes consistently. When inetd
               is started, if there is any error the exit code
               is not printed.

    Defect Description:
            PHNE_23068:
            Repackage HP-UX patch PHNE_21835 for VVOS 11.04.

            Based on HP-UX patch PHNE_21835:

            1. JAGad03290 /SR 8606134150:
               inetd is not working when a service in "swait" state is
               not working properly and there is only one service
               spawned by inetd before this service.

            Resolution:
               inetd code has been modified to make inetd work properly.

            2. JAGaa27205 /SR 5003424598:
               "swait" option was not documented in "inetd.conf.4"
               manpage.

            Resolution:
               "inetd.conf.4" manpage has been updated to contain this
               information.

            3. JAGaa27237 /SR 5003426296:
               With the command "inetd -c", inetd was not reconfiguring
               its database for the field change from "wait" to
               "swait" and vice versa in the file "/etc/inetd.conf".

            Resolution:
               During the reconfiguration of the service table for inetd
               now necessary modification has been done to reflect the
               change.

            4. JAGaa27203 /SR 5003426304:
               For the services in "swait" state, inetd logs the source
               address of the previous service. If this is the first
               service spawned by inetd, it logs (0.0.0.0) instead.
               This is because inetd was logging the source address
               information without accepting the connection.

            Resolution:
               inetd is now logging a different message for the services
               in "swait" state.

            5. JAGaa95817 /SR 8606147527:
               The listen backlog requested by inetd is too small.
               The value is hardcoded to 128. A busy Internet FTP
               download server could easily see more than 128
               simultaneous connection requests come in.

            Resolution:
               Now the listen backlog has been increased from 128 to
               1024.

            6. JAGac40194 /SR 8606124802:
               When a request for the non-root service arrives, inetd
               forks a child which hangs prior to exec'ing the
               appropriate executable. This is because the libsec
               functions are not closing all the files they are
               opening.

            Resolution:
               Modified the inetd trusted systems code to close all
               file pointers opened by the libsec functions.

            Based on HP-UX patch PHNE_17027:

            1. Inetd does not detect that a services' listen socket
               is invalid.

            Resolution:

            - Inetd now has additional checks for socket validity.

            2. Convert a system to a trusted system and enable
               auditing on the system. When the "audit events"
               log is checked, user id column has an entry
               "????" instead of root.

            Resolution:

            - Auditing code was not present in inetd. Added
              code that does proper logging when auditing
              is enabled.

            3. Inetd may terminate in circumstances where it should
               not.

            Resolution:

            - Inetd now detects the circumstances and doest not
              exit.

            4. Inetd startup script prints proper exit code on
               erroneous shutdown whereas it does not print the
               exit code on erroneous startup.

            Resolution:

            - Changed the startup script to handle exit code
              on startup and shutdown consistently.

    SR:
            8606134150 5003424598 5003426296 5003426304 8606147527
            8606124802 5003426312 5003414375 5003353433 1653283622

    Patch Files:

            InternetSrvcs.INETSVCS-INETD,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            /usr/sbin/inetd
            /sbin/init.d/inetd

            InternetSrvcs.INET-ENG-A-MAN,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            /usr/share/man/man4.Z/inetd.conf.4

    what(1) Output:

            InternetSrvcs.INETSVCS-INETD,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            /usr/sbin/inetd:
                    Copyright (c) 1983 Regents of the University of Cali
                            fornia.
                    Revision: 1.12.214.3 Tue Aug 1 10:30:45 GMT 2000
                    Patch id: PHNE_21835
            /sbin/init.d/inetd:
                    $Revision: Hewlett-Packard ISSL 1.17 net/INETSVCS/sc
                            ripts/inetd, hpuxinitscripts, vvos_rose, ros
                            e0081 $ $Date: 01/01/03 18:18:34 $
                    inetd $Revision: 1.4.214.2 $ $Date: 96/10/08 13:24:2
                            9 $

            InternetSrvcs.INET-ENG-A-MAN,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            /usr/share/man/man4.Z/inetd.conf.4:
                    None

    cksum(1) Output:

            InternetSrvcs.INETSVCS-INETD,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            3440068225 61440 /usr/sbin/inetd
            3020673063 1690 /sbin/init.d/inetd

            InternetSrvcs.INET-ENG-A-MAN,fr=B.11.04,
                    fa=HP-UX_B.11.04_32/64,v=HP:
            831194641 2881 /usr/share/man/man4.Z/inetd.conf.4

    Patch Conflicts:
            PHNE_21155

    Patch Dependencies:
            s700: 11.04: PHNE_18346
            s800: 11.04: PHNE_18346

    Hardware Dependencies: None

    Other Dependencies: None

    Supersedes: None

    Equivalent Patches:
            PHNE_20747:
            s700: 10.20
            s800: 10.20

            PHNE_21699:
            s700: 10.24
            s800: 10.24

            PHNE_21835:
            s700: 11.00
            s800: 11.00

    Patch Package Size: 110 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 PHNE_23068

            5. Run swinstall to install the patch:

                    swinstall -x autoreboot=true -x patch_match_target=true \
                              -s /tmp/PHNE_23068.depot

            By default swinstall will archive the original software in
            /var/adm/sw/save/PHNE_23068. If you do not wish to retain a
            copy of the original software, use the patch_save_files option:

                    swinstall -x autoreboot=true -x patch_match_target=true \
                              -x patch_save_files=false -s /tmp/PHNE_23068.depot

            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 PHNE_23068.text file is
            available in the product readme:

                    swlist -l product -a readme -d /tmp/PHNE_23068.depot

            To put this patch on a magnetic tape and install from the
            tape drive, use the command:

                    dd if=/tmp/PHNE_23068.depot of=/dev/rmt/0m bs=2k

    Special Installation Instructions:
            If PHNE_23068 is installed with any of the following ARPA
            Transport Patches:

            PHNE_21155

            the defect fix provided for Service Request 5003426312 will
            no longer work.

            Service Request 5003426312 describes a specific case where a
            user supplied service is configured in /etc/inetd.conf(4)
            and is started in the swait state. In this case under
            certain circumstances inetd(1M) will loop trying to start
            the service.

            Note this is not the case with any of the Hewlett-Packard
            supplied Internet Services, such as telnetd, rlogind, ftpd,
            etc.

            This problem will be corrected when ARPA Transport patch
            PHNE_21155 is superseded.
    -----End of Document ID: PHNE_23068------------------------------------------


    Document ID: PHKL_22856
    Date Loaded: 20010103
          Title: s700_800 11.00 SCSI Tape (stape) cumulative

    Patch Name: PHKL_22856

    Patch Description: s700_800 11.00 SCSI Tape (stape) cumulative

    Creation Date: 00/12/20

    Post Date: 01/01/03

    Hardware Platforms - OS Releases:
            s700: 11.00
            s800: 11.00

    Products: N/A

    Filesets:
            OS-Core.CORE-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP
            ProgSupport.C-INC,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP
            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP
            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP
            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP
            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP

    Automatic Reboot?: Yes

    Status: General Release

    Critical:
            Yes
            PHKL_22856: PANIC
                    The danger of panic is only valid when using Fujitsu
                    drives.

    Category Tags:
            defect_repair hardware_enablement enhancement
            general_release critical panic

    Path Name: /hp-ux_patches/s700_800/11.X/PHKL_22856

    Symptoms:
            PHKL_22856:
            ( SR: 8606171659 Chart: JAGad40923 )
            When using a Fujitsu drive, the system may panic during open
            due to a data page fault. The following stack trace is seen:

            panic+0x14
            report_trap_or_int_and_panic+0x4c
            trap+0xea8
            $RDB_trap_patch+0x38
            st_fuji_mode_enable+0xfc
            st_open+0x1434
            scsi_lun_open+0x718
            stape_open+0xc4
            call_open_close+0x114
            opend+0x108
            spec_open+0x6c
            vns_copen+0x48
            vn_open+0x88
            copen+0xdc
            open+0x38
            syscall+0x1c8
            $syscallrtn+0x0

            ( SR: 8606173149 Chart: JAGad42409 )
            An open to a freshly reset or powered-on DLT drive loaded
            with media attached to a FC-SCSI Bridge will fail with
            errno EIO.

            PHKL_22287:
            ( SR: 8606163660 Chart: JAGad32964 )
            No symptoms. Enhancement request for DLT1
            and Ultrium-1 tape drive support.

            ( SR: 8606163664 Chart: JAGad32968 )
            MTIOCGET ioctl command fails when no media is loaded
            in drive.

            PHKL_22161:
            ( SR: 8606128991 Chart: JAGac86537 )
            When sending an MTIOCGET to a tape drive that is not
            responding, the command completes successfully and returns
            erroraneous status data.

            ( SR: 8606132234 Chart: JAGad01383 )
            Polling of a tape device in a shared tape environment may
            result in excessive diagnostic log entries notifying of a
            RESV_CONFLICT return status.

            ( SR: 8606134606 Chart: JAGad03741 )
            The diskinfo reports an incorrect value for the capacity of
            a DDS4 device.

            ( SR: 8606138507 Chart: JAGad07709 )
            The first open of a loaded tape drive after being powered on
            will return EBUSY.

            ( SR: 8606139809 Chart: JAGad09121 )
            The mksf command will not recognize the density values for
            9490, SD-3, 9840, 3590, DLT7000 and DDS3.

            ( SR: 8606152688 Chart: JAGad22018 )
            When attempting to write to a DLT tape with an older density
            device file (ie DLT8000 drive w/ DLT4000 density), the tape
            is not actually written to in the older format.

            ( SR: 8606152691 Chart: JAGad22021 )
            Enhancement to add stape support of MTERASE.

            PHKL_20530:
            ( SR: 8606125218 DTS: JAGac40609 )
            Enhancement to add DDS4 autoloader and standalone support.

            PHKL_20507:
            ( SR: 8606100743 DTS: JAGab31975 )
            When performing an ioscan after a write() to a tape device
            has hung, all further commands to the tape device LUN will
            stall indefinitely. A reboot is required to free the LUN.

            PHKL_19805:
            ( SR: 8606106213 Chart: JAGab75144 )
            When a customer uses a DLT drive and specifies a density
            other than "BEST" the driver was not turning on compression
            when the density chosen was one for which compression should
            be used.

            ( SR: 8606102083 Chart: JAGab67522 )
            When an ioscan is done to a DLT drive at the same time the
            drive is being opened the system may report Unexpected
            Disconnect to the console and cause the drive to hang.

            ( SR: 8606106216 Chart: JAGab75147 )
            Enhancement: added a tunable st_ats_enabled to allow the
            user to turn off the automatic SCSI RESERVE of a tape device
            on open. The reservation was causing problems with
            Alexandria backup software. The tunable applies to the
            entire system and can not be set on a per-device basis.
            The default is to enable the automatic reservation.

            PHKL_19080:
            (SR: 8606100520 Chart: JAGab16437)
            Enhancement request to allow the stape driver to recognize
            the Quantum DLT 8000 tape devices.

            (SR: 8606100522 Chart: JAGab16439)
            When using a StorageTek 9840 drive, issuing the ioctl
            MTIOCTOP with an operation code of MTEOD (seek to EOD)
            returns EINVAL, even though this operation is supported on
            the 9840 drive.

    Defect Description:
            PHKL_22856:
            ( SR: 8606171659 Chart: JAGad40923 )
            A statement in a Fujitsu specific open routine that checks
            for a null pointer has incorrect syntax. The statement
            does not properly check for the null pointer causing a
            data page fault and subsequent panic of the system.

            Resolution:
            The syntax of the routine has been changed to properly check
            for a null pointer.

            ( SR: 8606173149 Chart: JAGad42409 )
            A DLT drive loaded with media will queue two Unit Attentions
            after reset or power up. The driver will retry a reserve
            command to flush the Unit Attentions, but the FC-SCSI bridge
            intercepts the reserves as expected not allowing them to
            flush the drives Unit Attentions. The next command after
            the reserves is sent down and fails due to the pending
            Unit Attentions causing the open to fail with EIO.

            Resolution:
            The driver will now retry test unit ready's before the
            reserve command to flush any pending Unit Attentions.

            PHKL_22287:
            ( SR: 8606163660 Chart: JAGad32964 )
            Enhancement request for DLT1 and Ultrium-1 tape drive
            support.

            Resolution:
            None required - enhancement request.

            ( SR: 8606163663 Chart: JAGad32967 )
            The MTIOCGET was previously setup to return ENXIO if the
            drive was offline to prevent a situation when a drive
            not selecting on the bus may return invalid data.

            Resolution:
            MTIOCGET no longer returns ENXIO when media is not present.

            PHKL_22161:
            ( SR: 8606128991 Chart: JAGac86537 )
            The MTIOCGET routine does not pass on any error generated by
            the drive online status check.

            Resolution:
            MTIOCGET will now return ENXIO if the drive is offline.

            ( SR: 8606132234 Chart: JAGad01383 )
            RESV_CONFLICT status causes the driver to a create a
            diagnostics log entry when this status is encountered.

            Resolution:
            Removed directive to log all I/O's with RESV_CONFLICT
            status.

            ( SR: 8606134606 Chart: JAGad03741 )
            When getting the capacity of any DDS device via
            SIOC_GET_CAPACITY, the driver applies a correction factor to
            account an old DDS1 firmware bug. It applies the correction
            factor without considering the device type.

            Resolution:
            Driver now checks if the device is a DDS1 device before
            applying the correction factor.

            ( SR: 8606138507 Chart: JAGad07709 )
            When a loaded drive is powered on, it queues up two Unit
            Attentions (29 and 28). During open, the first Unit
            Attention is captured by a test unit ready, but Unit
            Attention 28 notifying that the media has changed causes the
            reserve to fail returning EBUSY.

            Resolution:
            Added reserve retry in open routine to get past Unit
            Attention 28.

            ( SR: 8606139809 Chart: JAGad09121 )
            Can not create custom device files with mksf for any of the
            following densities: 9490, SD-3, 9840, 3590, DLT7000 and
            DDS3.

            Resolution:
            Added the densities to the kernel to be recognized by mksf.

            ( SR: 8606152688 Chart: JAGad22018 )
            With media loaded, a DLT drive will not apply a density
            requested via mode select until a write is issued. During
            open, the density requested by the driver is not immediately
            applied to drive confusing the driver on subsequent mode
            selects. These subsequent mode selects set the drive back
            to the previous density nullifying the initial density
            request.

            Resolution:
            Added check for DLT device to resend the requested density
            via mode select when setting other parameters during open.

            ( SR: 8606152691 Chart: JAGad22021 )
            Enhancement to add support of MTERASE command.

            Resolution:
            Added MTERASE command with immediate bit off and long bit
            on.

            PHKL_20530:
            ( SR: 8606125218 DTS: JAGac40609 )
            No defect, adds support for DDS4 drives.

            Resolution:
            None required - enhancement request

            PHKL_20507:
            ( SR: 8606100743 DTS: JAGab31975 )
            With a tape device LUN opened by stape, an ioscan pass-thru
            command retry will enter stape's pass-thru clean-up routine
            a second time releasing the LUN semaphore to an invalid,
            permanently locked state.
            Resolution:
            Stape does not release the LUN semaphore for the pass-thru
            command if the pass-thru driver is going to retry its IO
            attempt.

            PHKL_19805:
            ( SR: 8606106213 Chart: JAGab75144 )
            DLT drives specify compression in two places - embedded
            within the density setting, and also separately on a
            mode page. The driver was selecting the correct density,
            but was not enabling compression on the mode page.

            Resolution:
            Added flags for the DLT drives to also enable compression
            via the mode page

            ( SR: 8606102083 Chart: JAGab67522 )
            The problem is a combination of incorrect behavior from the
            DLT drive, incorrect behavior in SCSI services, and unusual
            behavior in the stape driver while attempting to work around
            a 7980 firmware bug. The tape driver was slowing the
            connection down to asynchronous mode before the initial
            inquiry because 7980s do not do synchronous i/o correctly.
            Then, if the drive was not a 7980, it would go back to
            synchronous. In the mean time, if a passthrough I/O
            attempted to negotiate for synchronous mode, the interface
            layer got confused with one driver asking for sync and the
            other asking for async.

            Resolution:
            The code was rearranged to first do the inquiry in
            synchronous mode, then check for a 7980 and slow down if
            necessary. We found through testing that the 7980 was able
            to handle the synchronous mode inquiry properly.

            ( SR: 8606106216 Chart: JAGab75147 )
            No defect, this is a new feature based on an enhancement
            request.

            Resolution:
            Made the st_ats_enabled flag a system tunable.

            PHKL_19080:
            (SR: 8606100520 Chart: JAGab16437)
            No defect. This is an enhancement request to support new
            hardware.

            Resolution:
            Added the DLT 8000 device to the table of known devices in
            stape. Also added entries for the DLT 8000 tape densities
            to the tables in mtio.h.

            (SR: 8606100522 Chart: JAGab16439)
            The table which describes tape devices in stape has a flag
            indicating whether or not the device will support the "space
            to EOD" command. The flag was inadvertently set to the
            wrong value.

            Resolution:
            Removed the "CR_NO_SEEK_EOD" flag from the 9840 entry.

    SR:
            8606100520 8606100522 8606100743 8606102083 8606106213
            8606106216 8606128991 8606132234 8606134606 8606138507
            8606139809 8606152688 8606152691 8606163660 8606163663
            8606171659 8606173149

    Patch Files:

            OS-Core.CORE-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            /usr/conf/h/mtio.h

            ProgSupport.C-INC,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            /usr/include/sys/mtio.h

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            /usr/conf/lib/libhp-ux.a(mt_prop.o)
            /usr/conf/lib/libhp-ux.a(scsi_tape.o)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            /usr/conf/master.d/scsi-tune
            /usr/conf/space.h.d/scsi-tune.h

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            /usr/conf/lib/libhp-ux.a(mt_prop.o)
            /usr/conf/lib/libhp-ux.a(scsi_tape.o)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            /usr/conf/master.d/scsi-tune
            /usr/conf/space.h.d/scsi-tune.h

    what(1) Output:

            OS-Core.CORE-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            /usr/conf/h/mtio.h:
                    mtio.h $Date: 2000/12/13 10:11:15 $Revision: r11ros/
                            12 PATCH_11.00 (PHKL_22856)

            ProgSupport.C-INC,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            /usr/include/sys/mtio.h:
                    mtio.h $Date: 2000/12/13 10:11:15 $Revision: r11ros/
                            12 PATCH_11.00 (PHKL_22856)

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            /usr/conf/lib/libhp-ux.a(mt_prop.o):
                    mt_prop.c $Date: 2000/12/13 10:10:00 $Revision: r11r
                            os/4 PATCH_11.00 (PHKL_22856)
            /usr/conf/lib/libhp-ux.a(scsi_tape.o):
                    scsi_tape.c $Date: 2000/12/13 10:07:13 $Revision: r1
                            1ros/17 PATCH_11.00 (PHKL_22856)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            /usr/conf/master.d/scsi-tune:
                    scsi-tune $Date: 1999/10/04 13:45:56 $Revision: r11r
                            os/4 PATCH_11.00 (PHKL_19805)
            /usr/conf/space.h.d/scsi-tune.h:
                    scsi-tune.h $Date: 1999/10/04 13:45:56 $Revision: r1
                            1ros/4 PATCH_11.00 (PHKL_19805)

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            /usr/conf/lib/libhp-ux.a(mt_prop.o):
                    mt_prop.c $Date: 2000/12/13 10:10:00 $Revision: r11r
                            os/4 PATCH_11.00 (PHKL_22856)
            /usr/conf/lib/libhp-ux.a(scsi_tape.o):
                    scsi_tape.c $Date: 2000/12/13 10:07:13 $Revision: r1
                            1ros/17 PATCH_11.00 (PHKL_22856)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            /usr/conf/master.d/scsi-tune:
                    scsi-tune $Date: 1999/10/04 13:45:56 $Revision: r11r
                            os/4 PATCH_11.00 (PHKL_19805)
            /usr/conf/space.h.d/scsi-tune.h:
                    scsi-tune.h $Date: 1999/10/04 13:45:56 $Revision: r1
                            1ros/4 PATCH_11.00 (PHKL_19805)

    cksum(1) Output:

            OS-Core.CORE-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            2602249919 30764 /usr/conf/h/mtio.h

            ProgSupport.C-INC,fr=B.11.00,fa=HP-UX_B.11.00_32/64,v=HP:
            2602249919 30764 /usr/include/sys/mtio.h

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            587089944 19372 /usr/conf/lib/libhp-ux.a(mt_prop.o)
            4086717272 90176 /usr/conf/lib/libhp-ux.a(scsi_tape.o)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_32,v=HP:
            3442170717 1329 /usr/conf/master.d/scsi-tune
            2014131006 1764 /usr/conf/space.h.d/scsi-tune.h

            OS-Core.CORE2-KRN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            3258155055 48952 /usr/conf/lib/libhp-ux.a(mt_prop.o)
            1457305428 194448 /usr/conf/lib/libhp-ux.a(scsi_tape.o)

            OS-Core.KERN2-RUN,fr=B.11.00,fa=HP-UX_B.11.00_64,v=HP:
            1056111117 1330 /usr/conf/master.d/scsi-tune
            2240142296 1765 /usr/conf/space.h.d/scsi-tune.h

    Patch Conflicts: None

    Patch Dependencies:
            s700: 11.00: PHKL_18543
            s800: 11.00: PHKL_18543

    Hardware Dependencies: None

    Other Dependencies: None

    Supersedes:
            PHKL_22287 PHKL_22161 PHKL_20530 PHKL_20507 PHKL_19805 PHKL_19080

    Equivalent Patches: None

    Patch Package Size: 480 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 PHKL_22856

            5. Run swinstall to install the patch:

                    swinstall -x autoreboot=true -x patch_match_target=true \
                              -s /tmp/PHKL_22856.depot

            By default swinstall will archive the original software in
            /var/adm/sw/save/PHKL_22856. If you do not wish to retain a
            copy of the original software, use the patch_save_files option:

                    swinstall -x autoreboot=true -x patch_match_target=true \
                              -x patch_save_files=false -s /tmp/PHKL_22856.depot

            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 PHKL_22856.text file is
            available in the product readme:

                    swlist -l product -a readme -d /tmp/PHKL_22856.depot

            To put this patch on a magnetic tape and install from the
            tape drive, use the command:

                    dd if=/tmp/PHKL_22856.depot of=/dev/rmt/0m bs=2k

    Special Installation Instructions:
            This patch depends on base patch PHKL_18543.
            For successful installation please insure that PHKL_18543
            is already installed, or that PHKL_18543 is included
            in the same depot with this patch and PHKL_18543
            is selected for installation.
    -----End of Document ID: PHKL_22856------------------------------------------