Re: Wakeup and Shuttrap

2007-11-09 Thread Kris Buelens
I've been reading and testing:

   - I get WAKEUP's RC 6 too, but when calling WAKEUP again, it directly
   exist with RC 1. So, the SHUTTRAP signal triggers 2 WAKEUP events: COSN 
   SMSG.  Removing the CONS option doesn't do anything.
   - SHUTTRAP does not work like ADDRESS CMS, (so an eventual CP EXEC
   wouldn't matter)
   - Diverting the SMSG delivery method from VMCF to IUCV doesn't help
   either.
   - Using SHUTTRAP CP MSG * STOP doesn't change a thing.

Bypasses:
When getting RC=6, test if another SMSG event is ready too:
  'WAKEUP +5 ( RDR  SMSG  FILE(HOBBIT TIMES *)'
  if rc=6 then do   /* RC 6 caused by SHUTTRAP? */
 saveRc=rc  /* If yes, WAKEUP also has  */
 'WAKEUP +0 (SMSG'  /*  an SMSG event stacked */
 if rc=2 then rc=saveRc
  end
Or, use the approach I ised in RxServer: I run WAKEUP with the EXT option
and test for external interrupt 2401 (see subrtn Extrn_event:); SHUTTRAP can
be loaded with the following:
'PIPE COMMAND NUCXDROP SHUTTRAP'
'NUCXLOAD SHUTTRAP (SYSTEM'
'SHUTTRAP'
Disadavantage: when using EXT in a server that is conencted to an active
SFS, WAKEUP will get many EXT 4000 interrupts (your code can ignore them,
but the handling is extra overhead anyway).

2007/11/8, Thomas Kern [EMAIL PROTECTED]:

 The SIGNAL SHUTDOWN command was issued from another authorized user. Ther
 e
 is no CP EXEC. I thought that having TERMIAL LINEND OFF might have affect
 ed
 it, but I reset it to LINEND # and it did not change the result. I will l
 ook
 inside my test copy of VMUTIL to see if I can use SHUTTRAP there and if s
 o,
 what the differences are.

 /Tom Kern
 /301-903-2211

 On Thu, 8 Nov 2007 21:56:31 +0100, Kris Buelens [EMAIL PROTECTED]
 wrote:

 I wouldn't know why it would become a console interrupt; my RxServers
 support SHUTTRAP, and they work well.
 
 How did you send the SIGNAL SHUTDOWN command.  My guess is that you type
 d it
 in on the console of user HOBBIT2, hence the stop with RC 6 of WAKEUP.
 Or, you have an CP EXEC in HOBBIT2 that stacks something (the CONS on
 WAKEUP means that WAKEUP should stop when something is in the stack ( I
 wouldn't be surprized if SHUTTRAP interprets its commands as if they are

 sent with ADDRESS CMS).
 


-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: Wakeup and Shuttrap

2007-11-09 Thread Kris Buelens
I'd say: test it, look at subroutine Extrn_event: and code a SAY when you
get a 4000 interrupt, than you can see how often it happens in your
environment.  I know we can live with the number.  You don't get an EXT 4000
interrupt for each SFS call, far from that.  From what I tested, I see that
one gets an EXT 4000 when you have an SFS dir accessed and someone issued a
GRANT AUTH for you for a file in that subdirectory (the SFS server has to
broadcast this to you).  Maybe if you'd use Asynch CSL calls to SFS you'll
get much more.

2007/11/9, Thomas Kern [EMAIL PROTECTED]:

 Well, at least I did not make some silly error.

 When you use WAKEUP to trap the EXT interrupts, do you get alot of the
 EXT 4000 interrupts queued up when some exec that gets called as a TIMER
 event needs to query an SFS server via CSL calls? Hobbit client DISK
 function reports on CP allocations (PAGE, SPOOL, DRCT, TDISK) and
 optionally on SFS server allocations.

 /Tom Kern
 /301-903-2211

 Kris Buelens wrote:
  I've been reading and testing:
 
  * I get WAKEUP's RC 6 too, but when calling WAKEUP again, it
directly exist with RC 1. So, the SHUTTRAP signal triggers 2
WAKEUP events: COSN  SMSG.  Removing the CONS option doesn't do
anything.
  * SHUTTRAP does not work like ADDRESS CMS, (so an eventual CP EXEC
wouldn't matter)
  * Diverting the SMSG delivery method from VMCF to IUCV doesn't help
either.
  * Using SHUTTRAP CP MSG * STOP doesn't change a thing.
 
  Bypasses:
  When getting RC=6, test if another SMSG event is ready too:
'WAKEUP +5 ( RDR  SMSG  FILE(HOBBIT TIMES *)'
if rc=6 then do   /* RC 6 caused by SHUTTRAP? */
   saveRc=rc  /* If yes, WAKEUP also has  */
   'WAKEUP +0 (SMSG'  /*  an SMSG event stacked */
   if rc=2 then rc=saveRc
end
  Or, use the approach I ised in RxServer: I run WAKEUP with the EXT
  option and test for external interrupt 2401 (see subrtn Extrn_event:);
  SHUTTRAP can be loaded with the following:
  'PIPE COMMAND NUCXDROP SHUTTRAP'
  'NUCXLOAD SHUTTRAP (SYSTEM'
  'SHUTTRAP'
  Disadavantage: when using EXT in a server that is conencted to an active
  SFS, WAKEUP will get many EXT 4000 interrupts (your code can ignore
  them, but the handling is extra overhead anyway).




-- 
Kris Buelens,
IBM Belgium, VM customer support


Re: Wakeup and Shuttrap

2007-11-09 Thread Thomas Kern

Thanks, I will look into it when I get into the office.

I don't think the Hobbit code actually accesses any directories itself 
and I have mine installed on a minidisk. But I will have to check it 
when Hobbit is installed in an SFS allocation.


/Tom Kern
/301-903-2211

Kris Buelens wrote:
I'd say: test it, look at subroutine Extrn_event: and code a SAY when 
you get a 4000 interrupt, than you can see how often it happens in your 
environment.  I know we can live with the number.  You don't get an EXT 
4000 interrupt for each SFS call, far from that.  From what I tested, I 
see that one gets an EXT 4000 when you have an SFS dir accessed and 
someone issued a GRANT AUTH for you for a file in that subdirectory (the 
SFS server has to broadcast this to you).  Maybe if you'd use Asynch CSL 
calls to SFS you'll get much more.


2007/11/9, Thomas Kern [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]:


Well, at least I did not make some silly error.

When you use WAKEUP to trap the EXT interrupts, do you get alot of the
EXT 4000 interrupts queued up when some exec that gets called as a TIMER
event needs to query an SFS server via CSL calls? Hobbit client DISK
function reports on CP allocations (PAGE, SPOOL, DRCT, TDISK) and
optionally on SFS server allocations.

/Tom Kern
/301-903-2211

Kris Buelens wrote:
  I've been reading and testing:
 
  * I get WAKEUP's RC 6 too, but when calling WAKEUP again, it
directly exist with RC 1. So, the SHUTTRAP signal triggers 2
WAKEUP events: COSN  SMSG.  Removing the CONS option
doesn't do
anything.
  * SHUTTRAP does not work like ADDRESS CMS, (so an eventual CP
EXEC
wouldn't matter)
  * Diverting the SMSG delivery method from VMCF to IUCV
doesn't help
either.
  * Using SHUTTRAP CP MSG * STOP doesn't change a thing.
 
  Bypasses:
  When getting RC=6, test if another SMSG event is ready too:
'WAKEUP +5 ( RDR  SMSG  FILE(HOBBIT TIMES *)'
if rc=6 then do   /* RC 6 caused by SHUTTRAP? */
   saveRc=rc  /* If yes, WAKEUP also has  */
   'WAKEUP +0 (SMSG'  /*  an SMSG event stacked */
   if rc=2 then rc=saveRc
end
  Or, use the approach I ised in RxServer: I run WAKEUP with the EXT
  option and test for external interrupt 2401 (see subrtn
Extrn_event:);
  SHUTTRAP can be loaded with the following:
  'PIPE COMMAND NUCXDROP SHUTTRAP'
  'NUCXLOAD SHUTTRAP (SYSTEM'
  'SHUTTRAP'
  Disadavantage: when using EXT in a server that is conencted to an
active
  SFS, WAKEUP will get many EXT 4000 interrupts (your code can ignore
  them, but the handling is extra overhead anyway).




--
Kris Buelens,
IBM Belgium, VM customer support


Re: Changing privclass of SHUTDOWN

2007-11-09 Thread Phil Smith III
On Thursday, 11/08/2007 at 10:27 EST, Huegel, Thomas [EMAIL PROTECTED] 
wrote:
 Although I do think that sometimes they get a little case of 'If it ain't 
 broke, don't fix it' syndrome.  

Well...there's a lot to be said for compatibility.  Work with *IX apps for a 
few releases and see.  Or even Windows, which has been known to *change shell 
keyboard shortcuts* when you apply patches.  For we keyboard-intensive folks, 
that's really, really, really evil.

And the VM team has made amazing strides (heh, I typed strikes -- Freudian?) 
in the last 25 years.  ObAnecdote: back at UofW, we maintained 200+ CMS mods, 
about half of which were fixes to IBM bugs.  I had a deal with our PSR (Paul 
Leckie of IBM Toronto) that I wouldn't call in more than 5 at a time.  Those 
calls always went like this:

Hi, I'd like to open five problems.
FIVE???
Well, I have about 100 more if you'd like...
No, no, five is fine.

But then, after weeks of discussion, 4.5 of the five (on average) would get 
closed without an APAR.

At one point I found myself repeating over the phone, ALL means ALL, when the 
then-Change Team refused to fix EITHER the code OR the doc.


All of that's pretty unimaginable today.  At worst, Chuckie would get in the 
act and the person arguing with IBM would simply stop posting to the 
list...forever... ;-)

...phsiii


CP Recording problem

2007-11-09 Thread James M
A while back I had a problem in which a class g user was inadvertently
given iucv abilities and started cp account recording.
The directory for that user was corrected removing the IUCV statements.
I then stopped recording and purged the records for the userid in
question. End of story...I thought.
Now I find that after each VM IPL I have to stop and purge again.
Any ideas on how this could be happening and how to turn it off.
The userid is seldom logged on - it has many mdisks which others link
to. I checked it's profile exec and didn't see anything suspicious.
Thanks for the help.


Re: Poster of computer hardware events?

2007-11-09 Thread Gregg
Marty,  It didn't make it into the margins of
amdahl presents VM/ESA PERFORMANCE WORKSHOP,
copyright 1992, Amdahl Corporation, In its original binder, I might add,
that I have here.
The copy I have at home (everybody keeps a complete set of manuals at both
data centers, no?)
has more notes.  I'll check.  I wasn't in the class, lots of XAMAP examples,
so maybe you taught one or the other and...


On 11/8/07, Marty Zimelis [EMAIL PROTECTED] wrote:

 Phil,
   Unless there was something else out there (a poster or whatever), that
 would have been me doing a riff in my VM Performance classes, first for
 Amdahl, then for Velocity.  Your buddy's time frame is about right (15
 years
 ago).  I was attempting to emphasize the impact of an RPS miss (show of
 hands: who remembers what that was?) on response time.

   The riff started by me complaining that I didn't have a good intuitive
 grasp of how fast CPUs were (tens of nanosecond cycle times at that
 point),
 so let's slow down our timeframe and say a CPU cycle is one second.  Then
 a
 page fault from Xstore is satisfied in [nn minutes], a DASD I/O satisfied
 from cache takes [mm hours] and one that has to go to the real disk takes
 [kk days].  An RPS miss adds [I think it was 16 hours] to that.

   Alas, a quick search of my notes didn't turn up a copy of the
 discussion,
 so I can't fill in the blanks.  Perhaps someone who took one of the
 classes
 and wrote it down

Marty
 
 Martin Zimelis
 Principal
 maz/Consultancy



  -Original Message-
  From: The IBM z/VM Operating System
  [mailto:[EMAIL PROTECTED] On Behalf Of Phil Smith III
  Sent: Thursday, November 08, 2007 1:48 PM
  To: IBMVM@LISTSERV.UARK.EDU
  Subject: Poster of computer hardware events?
 
  A buddy asked me:
 
  At a previous employer, someone had an article, poster or
  something (I know - real specific - it was 15+ years ago)
  that tried to put the time for computer events into
  perspective. It started with the quickest instruction (RR)
  having a baseline of 1 second. It the proceeded to go through
  all of the instructions, RX, RS, SS etc. and then into I/O,
  MIH and so on. Have you ever heard or seen anything like
  this? I'm having trouble stressing the importance of poor I/O
  response time and I thought this might be of use.
 
  I had to tell him I hadn't ever seen such a thing, but would
  like to.  I figure if anyone else alive knows what this
  is/was, they'll be on one of these two lists...!
 
  Anyone?
  --
  ...phsiii
 
  Phil Smith III
  Velocity Software
  www.velocity-software.com
  (703) 476-4511 (home office)
  (703) 568-6662 (cell)
 




-- 
Gregg Reed
No Plan, survives execution


Re: Poster of computer hardware events?

2007-11-09 Thread Tom Duerbusch
If we didn't have caching controllers and we were still on the 370 I/O 
subsystem, would we still be concerned about RPS misses now a days?

I think most disk drives have 512K of cache on them.  My understanding is that 
you don't read/write directly to the disk anymore, but to the drive cache.

And then there is the cache on the RAID adapter to consider.  

Since a RPS miss was that the channel path was busy with some other transfer 
when the block to be transferred came under the heads, true synchronous I/O, do 
we every do, true synchronous I/O any more?

Tom Duerbusch
THD Consulting

Law of Cat Thermodynamics

  Heat flows from a warmer to a cooler body, except in the case
  of a cat, in which case all heat flows to the cat.


 Schuh, Richard [EMAIL PROTECTED] 11/8/2007 3:52 PM 
Don't forget that Marty's note mentioned the word miss in conjunction
with RPS An RPS miss meant that the disk had rotated so that the next
record to be read was past the heads so that there was a wait until it
came back around. That was the performance issue he was talking about,
and it was a big deal in those days. The maximum rotational speed of a
disk was about 3600 rpm. 

 

Regards, 
Richard Schuh 


Re: Wakeup and Shuttrap

2007-11-09 Thread Brian Nielsen
On Fri, 9 Nov 2007 10:15:36 -0600, Thomas Kern [EMAIL PROTECTED] 

wrote:

Now I have to clean it up just a bit more. Which brings up the next 
tangent
on this discussion. When I signal a linux SVM to shutdown, CP reports th
at
the linux SVM has signalled its termination. When I am logged onto a lin
ux
SVM and the shutdown signal comes in, linux terminate and loads a disabl
ed
wait PSW (x0FFF) but does not log off. Is this PSW code (x0FFF) the
indicator to CP that SHUTDOWN has completed? If it is, how can I nicely 

load
the same indicator when my SVM has completed its shutdown processing? 


Use the Linux kernel option VMPOFF=LOGOFF to have the Linux guest logof
f 
after it has shutdown.

Brian Nielsen


Re: Changing privclass of SHUTDOWN

2007-11-09 Thread Ed Zell
 I still try to keep all of my stuff, for support of my VSE
 systems, DB2, Linux, under CMS.  Perhaps I'm one of the last
 ones that use CMS. 

Tom,

  You are not alone my friend.  I also keep just about everything
  related to our VSE systems in CMS.  We don't use ICCF for
  anything but applying service (and that is because I am too
  lazy to figure out the JCL that it generates!)

  And when I need to edit something on the PC, I use Kedit.  I
  would be lost without it.  It is an amazing piece of software.
  I just love showing the network/PC weenies how quickly I can edit
  an 80mb text file and use ALL to find what we are looking for!  

  CMS (and Kedit) still Plays in Peoria.

Ed Zell
Illinois Mutual Life
(309) 674-8255 x-107
.


CONFIDENTIALITY: This e-mail (including any attachments) may contain 
confidential, proprietary and privileged information, and unauthorized 
disclosure or use is prohibited.  If you receive this e-mail in error, notify 
the sender and delete this e-mail from your system.


Re: Changing privclass of SHUTDOWN

2007-11-09 Thread Brian Nielsen
On Fri, 9 Nov 2007 10:43:18 -0600, Ed Zell [EMAIL PROTECTED] 

wrote:

 I still try to keep all of my stuff, for support of my VSE
 systems, DB2, Linux, under CMS.  Perhaps I'm one of the last
 ones that use CMS. 

Tom,

  You are not alone my friend.  I also keep just about everything
  related to our VSE systems in CMS.  We don't use ICCF for
  anything but applying service (and that is because I am too
  lazy to figure out the JCL that it generates!)

  And when I need to edit something on the PC, I use Kedit.  I
  would be lost without it.  It is an amazing piece of software.
  I just love showing the network/PC weenies how quickly I can edit
  an 80mb text file and use ALL to find what we are looking for!  

  CMS (and Kedit) still Plays in Peoria.

I do a lot in CMS and I've been using  loving KEDIT for 15 years!  A
nyone 
who doesn't have KEDIT should get it.  There is a free demo version 
available (at www.kedit.com) whose only limitation is the size of the fil
e 
you can save (75 lines).  It is a great way to test drive it for those wh
o 
want to evaluate it.  It also has KEX built into it, which is almost 
identical to REXX.  The integrated manual through the help system is much
 
appreciated too.

With a few customizations (which I'll happily share) it is almost 
identical to XEDIT.  [To get you started: SET INTERFACE CLASSIC]

Brian Nielsen


Re: CP Recording problem

2007-11-09 Thread James M
Thanks and I'll try to keep in mind that cp has been designed with
punishment algorithm's

On Nov 9, 2007 11:06 AM, Alan Altmark [EMAIL PROTECTED] wrote:
 On Friday, 11/09/2007 at 10:35 EST, James M [EMAIL PROTECTED] wrote:
  A while back I had a problem in which a class g user was inadvertently
  given iucv abilities and started cp account recording.
  The directory for that user was corrected removing the IUCV statements.
  I then stopped recording and purged the records for the userid in
  question. End of story...I thought.
  Now I find that after each VM IPL I have to stop and purge again.
  Any ideas on how this could be happening and how to turn it off.
  The userid is seldom logged on - it has many mdisks which others link
  to. I checked it's profile exec and didn't see anything suspicious.
  Thanks for the help.

 Jim (the other one) is right: COLD start.  Put the RECORDING OFF PURGE QID
 userid into AUTOLOG1 until you find it convenient to do a cold start.

 Boy, that *is* kind of annoying, isn't it?  OTOH, the penalty for giving
 *ACCOUNT privs to the wrong user *should* be severe!  ;-)

 Alan Altmark
 z/VM Development
 IBM Endicott



Re: Wakeup and Shuttrap

2007-11-09 Thread Brian Nielsen
Logging off seems like a pretty good signal. :-)  You can put any CP 
command you want in the VMPOFF, so you could use MSG or SMSG to send a 

signal back to a shutdown SVM, which could wait until all guests have 
reported in before it issues the real CP SHUTDOWN.

Brian Nielsen

On Fri, 9 Nov 2007 10:55:12 -0600, Thomas Kern [EMAIL PROTECTED] 

wrote:

My current linux setup works just fine without adding the VMPOFF=LOGOF
F. 
If
it is DISCONNECTED when SIGNAL SHUTDOWN arrives, it shuts down, loads th
at
disable wait PSW and CP logs it off. When I am logged onto it and use th
e
CLASS G version of SIGNAL SHUTDOWN, linux shuts down, loads the disabled

wait and then I get to do what I want with the virtual machine without C
P
logging me off. 

What I wanted to know was is there a better way to signal CP that the
shutdown processing has been completed besides a CP STORE PSW ?

/Tom Kern
/301-903-2211


On Fri, 9 Nov 2007 10:34:17 -0600, Brian Nielsen [EMAIL PROTECTED]
 
wrote:

On Fri, 9 Nov 2007 10:15:36 -0600, Thomas Kern [EMAIL PROTECTED] 

wrote:

Now I have to clean it up just a bit more. Which brings up the next 

tangent
on this discussion. When I signal a linux SVM to shutdown, CP reports 

that
the linux SVM has signalled its termination. When I am logged onto a 

linux
SVM and the shutdown signal comes in, linux terminate and loads a 
disabled
wait PSW (x0FFF) but does not log off. Is this PSW code (x0FFF) the
indicator to CP that SHUTDOWN has completed? If it is, how can I nicel
y 
load
the same indicator when my SVM has completed its shutdown processing? 


Use the Linux kernel option VMPOFF=LOGOFF to have the Linux guest log
off 
after it has shutdown.

Brian Nielsen

=
===

=
===


Re: Wakeup and Shuttrap

2007-11-09 Thread Thomas Kern
A CLASS G linux guest only needs to signal CP that ITS own shutdown
processing has been completed and apparently the x0FFF in the PSW does th
at.

An SVM or Operator or Sysprog that issued the SIGNAL SHUTDOWN command wil
l
get the HCPSIG2113I message when the target SVM has completed its shutdow
n
(if it has loaded that magic PSW), so they could be running a program to
intercept the HCPSIG2113I messages and continue on the rest of the
processing if all targets complete before the specified WITHIN value.

/Tom Kern
/301-903-2211

On Fri, 9 Nov 2007 11:05:04 -0600, Brian Nielsen [EMAIL PROTECTED]
 wrote:

Logging off seems like a pretty good signal. :-)  You can put any CP 
command you want in the VMPOFF, so you could use MSG or SMSG to send a 

signal back to a shutdown SVM, which could wait until all guests have 

reported in before it issues the real CP SHUTDOWN.

Brian Nielsen



Re: Wakeup and Shuttrap

2007-11-09 Thread Brian Nielsen
On Fri, 9 Nov 2007 10:15:36 -0600, Thomas Kern [EMAIL PROTECTED] 

wrote:

Is this PSW code (x0FFF) the
indicator to CP that SHUTDOWN has completed? If it is, how can I nicely 

load
the same indicator when my SVM has completed its shutdown processing? 


Sorry, I mis-read your question the first time around.

You can use the class G command CP STORE PSW to change you virtual 
machines PSW.

Brian Nielsen


Kedit (Was changing privclass of SHUTDOWN)

2007-11-09 Thread Fran Hensler
Tom, Ed and Brian -
 
I too do much of my VSE work in CMS and KEDIT.  There's no
need to dwell on the wonders of XEDIT but there is not much
said about KEDIT.  I'm using 1.5  which has been around since
Windows 95 and I've never found a bug.  All of our power users
have KEDIT installed.
 
KEXX is great too.  The only thing lacking is PIPES.
 
Are you aware of the LaunchKE user contribution for KEDIT?
This is from the readme.txt:
 
LaunchKE is a simple yet useful context menu extension for
the Win95/NT Explorer shell.  It enables you to right click
on any file and load it up in Mansfield Sofware Groups great
KEdit/32 editor (http://www.kedit.com)
 
I can no longer find LaunchKE on kedit.com so I have put launchke.zip
on my download site:   http://zvm.sru.edu/~download/launchke.zip
 
/Fran Hensler at Slippery Rock University of Pennsylvania USA for 44 years
 [EMAIL PROTECTED] +1.724.738.2153
Yes, Virginia, there is a Slippery Rock
 
 
On Fri, 9 Nov 2007 10:43:18 -0600 Ed Zell said:
  And when I need to edit something on the PC, I use Kedit.  I
  would be lost without it.  It is an amazing piece of software.
  I just love showing the network/PC weenies how quickly I can edit
  an 80mb text file and use ALL to find what we are looking for!

  CMS (and Kedit) still Plays in Peoria.
 
On Fri, 9 Nov 2007 10:58:41 -0600 Brian_Nielsen said:
I do a lot in CMS and I've been using  loving KEDIT for 15 years!  Anyone
who doesn't have KEDIT should get it.  There is a free demo version
available (at www.kedit.com) whose only limitation is the size of the file
you can save (75 lines).  It is a great way to test drive it for those who
want to evaluate it.  It also has KEX built into it, which is almost
identical to REXX.  The integrated manual through the help system is much
appreciated too.

With a few customizations (which I'll happily share) it is almost
identical to XEDIT.  [To get you started: SET INTERFACE CLASSIC]

Brian Nielsen


Questions about LUN DASD volumes

2007-11-09 Thread Alain Benveniste
Hi all,

We have a new requirement where we would like to be able to backup/restor
e
LUN DASD from open for a test. OPEN is an other world for me. So I would
like to know how I should code LUN DASD (METALUN ?) into IOCP and how a
MDISK would look like too. A copy/paste would be great.

And what q da xxx details would show ?

Thanks
Alain Benveniste
Paris, France


Re: Questions about LUN DASD volumes

2007-11-09 Thread Raymond Noal
Alain,

Mini disks are defined in your IOCDS/IODF as though they were real DASD 
devices. Mini disks will appear as 3390's to your operating system running in a 
virtual machine. Of course, their size/capacity will be that of the mini disk 
definition.

If by LUN DASD you are referring to iSCSI devices, please review the attachment 
to this e-mail. It covers all of the topics relating to z/VM EDEV support.

Good luck.

HITACHI
 DATA SYSTEMS 
Raymond E. Noal 
Senior Technical Engineer 
Office: (408) 970 - 7978 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of 
Alain Benveniste
Sent: Friday, November 09, 2007 11:27 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Questions about LUN DASD volumes

Hi all,

We have a new requirement where we would like to be able to backup/restore
LUN DASD from open for a test. OPEN is an other world for me. So I would
like to know how I should code LUN DASD (METALUN ?) into IOCP and how a
MDISK would look like too. A copy/paste would be great.

And what q da xxx details would show ?

Thanks
Alain Benveniste
Paris, France  


Re: dirm needpass no

2007-11-09 Thread Jim Bohnsack
I'm still having problems with NEEDPASS.  I have every id that acts as 
an admin to the directory or as a system support person listed as 
authorized for every DIRMAINT command in AUTHFOR CONTROL.  I don't see 
Kris's connection in his posting re: the 1x0CMDS file.  The 
authorization level required for each command is included in the AUTHFOR 
file for each user.  I tried just editing the DVHOPT entry for an id 
that was included in AUTHFOR and changing the record to specify NPW0.  
Even after restarting DIRMAINT on that test system, I had to still enter 
the DIRM NEEDPASS NO on that id to be able to do a DIRM FOR  /userid / GET.


I would like to be able to switch to the z/VM 5.3 level of DIRMAINT 
without having to try to explain to the userid admin people that before 
that can do something to the directory, they have to issue the DIRM 
NEEDPASS NO command from their own userid.


Jim

Kris Buelens wrote:

--=_Part_492_24364452.1194510562809
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

For NEEDPASS, there was some relief in 2002.  But, I still change the
1x0CMDS file.  Below the converstaion I had with Mark Ritter on the subject.

  



--
Jim Bohnsack
Cornell University
(607) 255-1760
[EMAIL PROTECTED]


Re: Questions about LUN DASD volumes

2007-11-09 Thread Imler, Steven J
Alain,

I think the only way you could do this from z/VM (the mainframe) is if
the LUN DASD was configured as FBA devices ... if it's native Linux, I
think the only way it can be accessed on the mainframe is by dedicating
it to a z/Linux system.

JR (Steven) Imler
CA
Senior Software Engineer
Tel:  +1 703 708 3479
Fax:  +1 703 708 3267
[EMAIL PROTECTED]
 

 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Alain Benveniste
 Sent: Friday, November 09, 2007 02:27 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Questions about LUN DASD volumes
 
 Hi all,
 
 We have a new requirement where we would like to be able to 
 backup/restor=
 e
 LUN DASD from open for a test. OPEN is an other world for me. 
 So I would
 like to know how I should code LUN DASD (METALUN ?) into IOCP 
 and how a
 MDISK would look like too. A copy/paste would be great.
 
 And what q da xxx details would show ?
 
 Thanks
 Alain Benveniste
 Paris, France  
 
 


Querying virtual processors

2007-11-09 Thread Mark Post
I've got a couple of z/VM 5.1 guests, and they both have privilege classes B 
and G.  I would like to be able to query how many virtual processors CP has 
defined for me at any given point in time.  (No real reason, I'm just trying to 
learn new stuff, and the topic has come up on the Linux-390 mailing list.)

I've looked through the various CP commands, but can't figure out if what I 
want to do is possible or not.Is there?


Mark Post


Re: Querying virtual processors

2007-11-09 Thread Rich Smrcina

Q V CPUS

Mark Post wrote:

I've got a couple of z/VM 5.1 guests, and they both have privilege classes B 
and G.  I would like to be able to query how many virtual processors CP has 
defined for me at any given point in time.  (No real reason, I'm just trying to 
learn new stuff, and the topic has come up on the Linux-390 mailing list.)

I've looked through the various CP commands, but can't figure out if what I 
want to do is possible or not.Is there?


Mark Post



--
Rich Smrcina
VM Assist, Inc.
Phone: 414-491-6001
Ans Service:  360-715-2467
rich.smrcina at vmassist.com
http://www.linkedin.com/in/richsmrcina

Catch the WAVV!  http://www.wavv.org
WAVV 2008 - Chattanooga - April 18-22, 2008


Re: Querying virtual processors

2007-11-09 Thread Marcy Cortes
IND USER   should tell you.



Marcy Cortes 

This message may contain confidential and/or privileged information. If
you are not the addressee or authorized to receive this for the
addressee, you must not use, copy, disclose, or take any action based on
this message or any information herein. If you have received this
message in error, please advise the sender immediately by reply e-mail
and delete this message. Thank you for your cooperation.


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Mark Post
Sent: Friday, November 09, 2007 1:00 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: [IBMVM] Querying virtual processors

I've got a couple of z/VM 5.1 guests, and they both have privilege
classes B and G.  I would like to be able to query how many virtual
processors CP has defined for me at any given point in time.  (No real
reason, I'm just trying to learn new stuff, and the topic has come up on
the Linux-390 mailing list.)

I've looked through the various CP commands, but can't figure out if
what I want to do is possible or not.Is there?


Mark Post


Re: Controlling MONWRITE and the size of its 191 disk

2007-11-09 Thread Roger Lunsford
The PERFKIT can create HISTORY DATA files, which can be looked at 
as condensed monitor data files.  The PERFKIT can also process these 

data files via the PERFKIT MENU OPTION 32 HISTORY DATA FILES. Within the
ACUM HISTSUM and the MMDD HISTLOG I can see the CPU Utilization on 

each monitor interval.  I fI am interested in a specific user(s), I then 

simply BENCHMRK these users, and can also get the same type of condensed
 
monitor records as well...utilizing MUCH LESS disk space than RAW CP 
Mondata.  I would advise to check this out.
Best Regards, Roger Lunsford z/VM CPL2, Perfkit L2/L3


Re: dirm needpass no

2007-11-09 Thread Jim Bohnsack
Ron--I'd be happy to do that if it worked.  I tried, however, from my id 
that DIRMAINT accepted, and issued the command DIRM FOR MAINT NEEDPASS 
NO and nothing happened.  I would think that it should work, but that 
does not do the job.

Jim

Ron Schmiedge wrote:

Jim,

Couldn't you use the big hammer approach and update the needpass
value for all your user admin people from someone who can, like MAINT?
A list of the users combined with enough EXEC DIRMAINT commands in one
exec, run it and go on to something else?

I recall having to do that for a different option that changed changed
its default value between DIRMAINT on VM/ESA and DIRMAINT on z/VM 4.4.

Ron

On 11/9/07, Jim Bohnsack [EMAIL PROTECTED] wrote:
  

I'm still having problems with NEEDPASS.  I have every id that acts as
an admin to the directory or as a system support person listed as
authorized for every DIRMAINT command in AUTHFOR CONTROL.  I don't see
Kris's connection in his posting re: the 1x0CMDS file.  The
authorization level required for each command is included in the AUTHFOR
file for each user.  I tried just editing the DVHOPT entry for an id
that was included in AUTHFOR and changing the record to specify NPW0.
Even after restarting DIRMAINT on that test system, I had to still enter
the DIRM NEEDPASS NO on that id to be able to do a DIRM FOR  /userid / GET.

I would like to be able to switch to the z/VM 5.3 level of DIRMAINT
without having to try to explain to the userid admin people that before
that can do something to the directory, they have to issue the DIRM
NEEDPASS NO command from their own userid.

Jim




  



--
Jim Bohnsack
Cornell University
(607) 255-1760
[EMAIL PROTECTED]


Re: dirm needpass no

2007-11-09 Thread Alan Altmark
On Friday, 11/09/2007 at 03:50 EST, Jim Bohnsack [EMAIL PROTECTED] 
wrote:
 I would like to be able to switch to the z/VM 5.3 level of DIRMAINT
 without having to try to explain to the userid admin people that before
 that can do something to the directory, they have to issue the DIRM
 NEEDPASS NO command from their own userid.

Have you called the Support Center?  It may be a bug.

Alan Altmark
z/VM Development
IBM Endicott


Re: OT: CICS poster (was Poster of computer hardware events?)

2007-11-09 Thread Alan Altmark
On Friday, 11/09/2007 at 04:42 EST, Steve Marak [EMAIL PROTECTED] 
wrote:

 I have one of those (somewhere), and even more coincidentally, was
 thinking of it for reasons entirely unrelated to this thread just
 yesterday. How I came to have it is more ironic than coincidental, given
 how little I know - or ever knew - about CICS.
 
 I've never seen another, although the IBM persons who gave me that one
 clearly had their sources. There's a CICS-L list at UGA ...

I still have mine, given to me by the CICS guys on a trip to Hursley back 
in 1986 or 87, back when we were working on CICS/VM.  :-)

Alan Altmark
z/VM Development
IBM Endicott