Re: Guest in 31 or 64 bit?

2007-08-11 Thread Ray Mansell

Lee Stewart wrote:
Is there a way to tell from a CP command if a guest is running in 31 
bit or 64 bit mode?

Thanks
Lee
Not directly, but you could issue the DISPLAY PSW command on behalf of 
the target user (using the FOR command in z/VM 5.3, or via SCIF for 
earlier releases) and interpret the result, which will be like one of 
the following:


Guest in 31-bit mode:
for operator cmd d p  
OPERATOR : PSW = 030E 8105B570
OPERATOR : HCPFOR069I Command Complete.  CP return code = .


Guest in 64-bit mode, PSWTRANS OFF:
for raylx2 cmd d 
p  

RAYLX2   : HCPCDP6150E The option PSW has been specified but is not 
valid in z/Architecture mode.  To enable the use of this option issue 
the appropriate SET PSWTRANS command or use the PSWG option.

RAYLX2   : HCPFOR069I Command Complete.  CP return code = 6150.

Guest in 64-bit mode, PSWTRANS ALL|DISPLAY|STORE:
for raylx2 cmd d 
p 
RAYLX2   : PSW = NON TRANSLATABLE PSWG = 07060001 8000  
00107E2E

RAYLX2   : HCPFOR069I Command Complete.  CP return code = .

And yes, it would be very easy (code-wise) to provide a QUERY command 
option to give this information, or you might try the following piece of 
REXX from a suitably-privileged userid (this, of course, is subject to 
VMDMMODE remaining at the same offset in the VMDBK - which it has for at 
least the last four releases):

---
/* QMODE: determine whether a guest is in 64-bit mode 
*/  
 
Parse UPPER Arg uid   
If (uid='*') Then uid = userid()  
 
Numeric Digits 20 
 
'PIPE CP LOCATE' uid '| spec w3 1 | var vmdbk'
If (rc0) Then Do
 Say 'Error' rc 'from CP LOCATE' uid'' 
 Exit rc 
 End 
 
vmdmmode = d2x(x2d(vmdbk)+x2d(4c4))   
 
'PIPE CP DISPLAY HS' || vmdmmode || '.1 | spec w2 1 | var mode'
If (rc0) Then Do
 Say 'Error' rc 'from CP DISPLAY HS' || vmdmmode || '.1'   
 Exit rc 
 End 
 
If bitand(x2c(mode),'40'x)='40'x  
 Then Say uid 'is in 64-bit mode'
 Else Say uid 'is not in 64-bit mode'
---  
Or one could write a CP QUERY command extension - isn't that possible? 
I'll take a look and maybe post something later.


Ray


Re: Guest in 31 or 64 bit?

2007-08-11 Thread Jeff Gribbin, EDS
If you have TRACK installed, that'll answer the question on an ad-hoc 
basis without any further programming effort on your part. Otherwise, if 

it were me and I were looking for a reliable, programmable interface I 

reckon I'd be starting to think about writing an extension to QUERY ...


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Stracka, James (GTI)
Very unreliable.  To test some routines, my co-worker defined my CMS
test id 2G

ind user *
USERID=TXJIMMACH=XC  STOR=1T VIRT=V XSTORE=NONE
IPLSYS=CMS22G   DEVNUM=00020
PAGES: RES=3438 WS=3461 LOCKEDREAL= RESVD=
NPREF= PREF= READS=0018 WRITES=0022
CPU 00: CTIME=22:45 VTIME=000:00 TTIME=000:00 IO=000816
RDR=00 PRT=000297 PCH=00



-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Schuh, Richard
Sent: Friday, August 10, 2007 1:44 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?


If it has more that 2G, you might conclude, correctly or not, that it is
64-bit :-)

Regards, 
Richard Schuh 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Wakser, David
Sent: Friday, August 10, 2007 10:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

David Wakser
InfoCrossing 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit
or 64 bit mode? Thanks Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


This message w/attachments (message) may be privileged, confidential or 
proprietary, and if you are not an intended recipient, please notify the 
sender, do not use or share it and delete it. Unless specifically indicated, 
this message is not an offer to sell or a solicitation of any investment 
products or other financial product or service, an official confirmation of any 
transaction, or an official statement of Merrill Lynch. Subject to applicable 
law, Merrill Lynch may monitor, review and retain e-communications (EC) 
traveling through its networks/systems. The laws of the country of each 
sender/recipient may impact the handling of EC, and EC may be archived, 
supervised and produced in countries other than the country in which you are 
located. This message cannot be guaranteed to be secure or error-free. This 
message is subject to terms available at the following link: 
http://www.ml.com/e-communications_terms/. By messaging with Merrill Lynch you 
consent to the foregoing.



Guest in 31 or 64 bit?

2007-08-10 Thread Lee Stewart
Is there a way to tell from a CP command if a guest is running in 31 bit 
or 64 bit mode?

Thanks
Lee
--

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Schuh, Richard
If it has more that 2G, you might conclude, correctly or not, that it is
64-bit :-)

Regards, 
Richard Schuh 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Wakser, David
Sent: Friday, August 10, 2007 10:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

David Wakser
InfoCrossing 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit
or 64 bit mode?
Thanks
Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Stracka, James (GTI)
I know none.  It would be nice to know if those z/Linux guests really
are running in 64 bit mode.

It appears that you have to chase the user VMBLOK (OK old name).

A quick look at HCPVMODE indicates it will be An Adventure! 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?


Is there a way to tell from a CP command if a guest is running in 31 bit

or 64 bit mode?
Thanks
Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


This message w/attachments (message) may be privileged, confidential or 
proprietary, and if you are not an intended recipient, please notify the 
sender, do not use or share it and delete it. Unless specifically indicated, 
this message is not an offer to sell or a solicitation of any investment 
products or other financial product or service, an official confirmation of any 
transaction, or an official statement of Merrill Lynch. Subject to applicable 
law, Merrill Lynch may monitor, review and retain e-communications (EC) 
traveling through its networks/systems. The laws of the country of each 
sender/recipient may impact the handling of EC, and EC may be archived, 
supervised and produced in countries other than the country in which you are 
located. This message cannot be guaranteed to be secure or error-free. This 
message is subject to terms available at the following link: 
http://www.ml.com/e-communications_terms/. By messaging with Merrill Lynch you 
consent to the foregoing.



Re: Guest in 31 or 64 bit?

2007-08-10 Thread Stracka, James (GTI)
I know, but it is so much fun to break some of our test execs with a one
terabyte machine!  :-)  

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Schuh, Richard
Sent: Friday, August 10, 2007 1:54 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?


That is why the correctly or not and :-) are in the post. 

Regards, 
Richard Schuh 


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Stracka, James (GTI)
Sent: Friday, August 10, 2007 10:50 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

Very unreliable.  To test some routines, my co-worker defined my CMS
test id 2G

ind user *
USERID=TXJIMMACH=XC  STOR=1T VIRT=V XSTORE=NONE
IPLSYS=CMS22G   DEVNUM=00020
PAGES: RES=3438 WS=3461 LOCKEDREAL= RESVD=
NPREF= PREF= READS=0018 WRITES=0022 CPU 00:
CTIME=22:45 VTIME=000:00 TTIME=000:00 IO=000816
RDR=00 PRT=000297 PCH=00



-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Schuh, Richard
Sent: Friday, August 10, 2007 1:44 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?


If it has more that 2G, you might conclude, correctly or not, that it is
64-bit :-)

Regards, 
Richard Schuh 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Wakser, David
Sent: Friday, August 10, 2007 10:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

David Wakser
InfoCrossing 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit
or 64 bit mode? Thanks Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


This message w/attachments (message) may be privileged, confidential or
proprietary, and if you are not an intended recipient, please notify the
sender, do not use or share it and delete it. Unless specifically
indicated, this message is not an offer to sell or a solicitation of any
investment products or other financial product or service, an official
confirmation of any transaction, or an official statement of Merrill
Lynch. Subject to applicable law, Merrill Lynch may monitor, review and
retain e-communications (EC) traveling through its networks/systems. The
laws of the country of each sender/recipient may impact the handling of
EC, and EC may be archived, supervised and produced in countries other
than the country in which you are located. This message cannot be
guaranteed to be secure or error-free. This message is subject to terms
available at the following link:
http://www.ml.com/e-communications_terms/. By messaging with Merrill
Lynch you consent to the foregoing.



Re: Guest in 31 or 64 bit?

2007-08-10 Thread McKown, John
 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Wakser, David
 Sent: Friday, August 10, 2007 12:36 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: Guest in 31 or 64 bit?
 
 
 I see that on a 5.1 machine you can retrieve it as:
 
 q cplevel 
 z/VM Version 5 Release 1.0, service level 0402 (64-bit)   
 
 David Wakser
 InfoCrossing 

I think the OP wanted something run from a CMS user which would be like:

#CP Q BITNESS guest

with a response like:

guest IS RUNNING IN 64 BIT MODE

or

guest IS RUNNING IN 31 BIT MODE

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Lee Stewart

Thanks for all the responses...

My CP is in 64 bit (both from IPL and Q CPLEVEL), but it would be since 
my hardware is 64 bit capable.


The question was really if some or all of the MVS (sorry z/OS) guests 
were running in 64 bit mode.   And here the 2G test isn't valid -- they 
are all test  development and all are less than 2G...


Oh well,   Thanks,
Lee

McKown, John wrote:

-Original Message-
From: The IBM z/VM Operating System 
[mailto:[EMAIL PROTECTED] On Behalf Of Wakser, David

Sent: Friday, August 10, 2007 12:36 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?


I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   


David Wakser
InfoCrossing 


I think the OP wanted something run from a CMS user which would be like:

#CP Q BITNESS guest

with a response like:

guest IS RUNNING IN 64 BIT MODE

or

guest IS RUNNING IN 31 BIT MODE

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 



--

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Neale Ferguson
Do you want to query that on the guest itself or from some other virtual
machine? On the guest itself: #CP D P (it will bitch if it's running in
64-bit mode where you need to use #CP D PG - unless the guest has the
PSWTRANS set to DISPLAY). If not, you'll be checking VMDBK stuff like
Perfkit etc. do.

 Is there a way to tell from a CP command if a guest is running in 31 bit
 or 64 bit mode? Thanks Lee


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Schuh, Richard
The 2G test is never valid. That was a facetious suggestion. It is
possible to run a 32-bit system in  2G and just not use the storage
above the 2G limit, or as the earlier releases of VM did, use it to
support guests. And it is possible to run a 64-bit system in 2G or less.


If it is MVS instead of z/OS, that might be a valid test. Was anything
actually named MVSx ever 64-bit? Not having to support an MVS guest
since 1985, I do not know. Even then, it is no help for those who are
supporting guests other than of the MVS - z/OS variety.

You may have a SHARE requirement. I do not imagine that the programming
will be rocket surgery. All of the red tape and process will likely be
worse by orders of magnitude.

Regards, 
Richard Schuh 


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 12:08 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

Thanks for all the responses...

My CP is in 64 bit (both from IPL and Q CPLEVEL), but it would be since 
my hardware is 64 bit capable.

The question was really if some or all of the MVS (sorry z/OS) guests 
were running in 64 bit mode.   And here the 2G test isn't valid -- they 
are all test  development and all are less than 2G...

Oh well,   Thanks,
Lee

McKown, John wrote:
 -Original Message-
 From: The IBM z/VM Operating System 
 [mailto:[EMAIL PROTECTED] On Behalf Of Wakser, David
 Sent: Friday, August 10, 2007 12:36 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: Guest in 31 or 64 bit?


 I see that on a 5.1 machine you can retrieve it as:

 q cplevel 
 z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

 David Wakser
 InfoCrossing 
 
 I think the OP wanted something run from a CMS user which would be
like:
 
 #CP Q BITNESS guest
 
 with a response like:
 
 guest IS RUNNING IN 64 BIT MODE
 
 or
 
 guest IS RUNNING IN 31 BIT MODE
 
 --
 John McKown
 Senior Systems Programmer
 HealthMarkets
 Keeping the Promise of Affordable Coverage
 Administrative Services Group
 Information Technology
 
 The information contained in this e-mail message may be privileged
 and/or confidential.  It is for intended addressee(s) only.  If you
are
 not the intended recipient, you are hereby notified that any
disclosure,
 reproduction, distribution or other use of this communication is
 strictly prohibited and could, in certain circumstances, be a criminal
 offense.  If you have received this e-mail in error, please notify the
 sender by reply and delete this message without copying or disclosing
 it. 
 

-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Wakser, David
I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

David Wakser
InfoCrossing 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit
or 64 bit mode?
Thanks
Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread David Boyes
  Is there a way to tell from a CP command if a guest is running in 31
bit
  or 64 bit mode? Thanks Lee

Doesn't IND USER EXT show a MACH= line? OK, not a single function
command, but the information is there w/o running control blocks.

Still sounds like a requirement, though. 


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Neale Ferguson
Yes but it can be XA for 31 or 64 bit. You SET MACH XA|XC|ESA but to go
into 64-bit mode the machine has to execute a sigp instruction with
parameters set up to put it into z/Arch mode.

On Fri, 2007-08-10 at 16:09 -0400, David Boyes wrote:
 Doesn't IND USER EXT show a MACH= line? OK, not a single function
 command, but the information is there w/o running control blocks.
 
 Still sounds like a requirement, though. 
 


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Romanowski, John (OFT)
It's not a CP command but if you have Performance Toolkit:
 64-bit guests are shown as  EME and 31-bit ESA in the User Status
column of menu item 21- User Resource Usage screen.
  EMA and ESA are shown in various other PTK screens too.

There's a PIPE interface to PTK screens.



This e-mail, including any attachments, may be confidential, privileged or 
otherwise legally protected. It is intended only for the addressee. If you 
received this e-mail in error or from someone who was not authorized to send it 
to you, do not disseminate, copy or otherwise use this e-mail or its 
attachments.  Please notify the sender immediately by reply e-mail and delete 
the e-mail from your system.


-Original Message-

From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit

or 64 bit mode?
Thanks
Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Schuh, Richard
Yes, but the choices are ESA, XA and XC.

Regards, 
Richard Schuh 


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of David Boyes
Sent: Friday, August 10, 2007 1:09 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

  Is there a way to tell from a CP command if a guest is running in 31
bit
  or 64 bit mode? Thanks Lee

Doesn't IND USER EXT show a MACH= line? OK, not a single function
command, but the information is there w/o running control blocks.

Still sounds like a requirement, though. 


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Edward M. Martin
Hello everyone,

On the z/VM system you have the 

q cplevel  
z/VM Version 4 Release 3.0, service level 0402 (64-bit)
Generated at 08/06/04 13:11:53 EDT 
IPL at 12/02/06 02:32:43 EDT   
Ready; T=0.01/0.01 16:39:56

On VSE/ESA systems you have the 

sir

AR 0015 CPUID  VM = 00017D7C20868000VSE = FF817D7C20868000

AR 0015 PROCESSOR = IBM 2086-160 02 (77D7C02)  LPAR = PROD  No. =
0001
AR 0015 VM-SYSTEM = z/VM4.3.0   (0402)   USERID = VSE312   VMCF = ON

AR 0015  CPUs = 0001   Cap. = 100%

AR 0015 PROC-MODE = ESA   (64-BIT)  IPL(74F)16:17:56 EDT  08/10/2007

AR 0015 SYSTEM= z/VSE   3.1.2 06/09/2006

AR 0015 VSE/AF  7.1.0   DY46685   04/20/2007


What is on Linux, Iseries, and z/OS?

Ed Martin 
Aultman Health Foundation
330-588-4723
[EMAIL PROTECTED] 
ext. 40441
 -Original Message-
 From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED]
On
 Behalf Of Schuh, Richard
 Sent: Friday, August 10, 2007 4:34 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: Guest in 31 or 64 bit?
 
 Yes, but the choices are ESA, XA and XC.
 
 Regards,
 Richard Schuh
 
 
 -Original Message-
 From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED]
On
 Behalf Of David Boyes
 Sent: Friday, August 10, 2007 1:09 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: Guest in 31 or 64 bit?
 
   Is there a way to tell from a CP command if a guest is running in
31
 bit
   or 64 bit mode? Thanks Lee
 
 Doesn't IND USER EXT show a MACH= line? OK, not a single function
 command, but the information is there w/o running control blocks.
 
 Still sounds like a requirement, though.


Re: Guest in 31 or 64 bit?

2007-08-10 Thread RPN01
(Slightly off topic)

I had a user request additional memory because their image was slow, and I
tried to explain that it wouldn't help because they weren't CPU bound. They
insisted and I finally gave in and increased the image from 2gig to 3gig.

I waited a couple of days, and then asked if it had helped. The answer was a
resounding Yes!... As they calmed down again, I said Well, you know...
Your SuSE 8 31-bit image can only address 2gig, so that additional gig isn't
actually being used for anything at all

They tend to listen now when I tell them something won't help.

-- 
   .~.Robert P. Nix Mayo Foundation
   /V\RO-OE-5-55200 First Street SW
  /( )\   507-284-0844  Rochester, MN 55905
  ^^-^^   - 
In theory, theory and practice are the same, but
 in practice, theory and practice are different.




On 8/10/07 12:44 PM, Schuh, Richard [EMAIL PROTECTED] wrote:

 If it has more that 2G, you might conclude, correctly or not, that it is
 64-bit :-)
 
 Regards, 
 Richard Schuh 
 
 -Original Message-
 From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
 Behalf Of Wakser, David
 Sent: Friday, August 10, 2007 10:36 AM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Re: Guest in 31 or 64 bit?
 
 I see that on a 5.1 machine you can retrieve it as:
 
 q cplevel
 z/VM Version 5 Release 1.0, service level 0402 (64-bit)
 
 David Wakser
 InfoCrossing 
 
 -Original Message-
 From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
 Behalf Of Lee Stewart
 Sent: Friday, August 10, 2007 1:23 PM
 To: IBMVM@LISTSERV.UARK.EDU
 Subject: Guest in 31 or 64 bit?
 
 Is there a way to tell from a CP command if a guest is running in 31 bit
 or 64 bit mode?
 Thanks
 Lee


Re: Guest in 31 or 64 bit?

2007-08-10 Thread David Boyes
 Yes but it can be XA for 31 or 64 bit. You SET MACH XA|XC|ESA but to
go
 into 64-bit mode the machine has to execute a sigp instruction with
 parameters set up to put it into z/Arch mode.

D'oh. Right. Duh. Is it Friday yet? 

-- db


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Schuh, Richard
Can an XC machine run 64-bit? Isn't XC a pseudo mode invented so that
CMS could access SFS DIRC directories that were in dataspaces?

Regards, 
Richard Schuh 


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of David Boyes
Sent: Friday, August 10, 2007 2:02 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

 Yes but it can be XA for 31 or 64 bit. You SET MACH XA|XC|ESA but to
go
 into 64-bit mode the machine has to execute a sigp instruction with
 parameters set up to put it into z/Arch mode.

D'oh. Right. Duh. Is it Friday yet? 

-- db


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Neale Ferguson
No it program checks on an attempt to issue the SIGP to put the machine
in 64-bit mode. 

On Fri, 2007-08-10 at 14:08 -0700, Schuh, Richard wrote:
 Can an XC machine run 64-bit? Isn't XC a pseudo mode invented so that
 CMS could access SFS DIRC directories that were in dataspaces?


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Schuh, Richard
That is why the correctly or not and :-) are in the post. 

Regards, 
Richard Schuh 


-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Stracka, James (GTI)
Sent: Friday, August 10, 2007 10:50 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

Very unreliable.  To test some routines, my co-worker defined my CMS
test id 2G

ind user *
USERID=TXJIMMACH=XC  STOR=1T VIRT=V XSTORE=NONE
IPLSYS=CMS22G   DEVNUM=00020
PAGES: RES=3438 WS=3461 LOCKEDREAL= RESVD=
NPREF= PREF= READS=0018 WRITES=0022
CPU 00: CTIME=22:45 VTIME=000:00 TTIME=000:00 IO=000816
RDR=00 PRT=000297 PCH=00



-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Schuh, Richard
Sent: Friday, August 10, 2007 1:44 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?


If it has more that 2G, you might conclude, correctly or not, that it is
64-bit :-)

Regards, 
Richard Schuh 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Wakser, David
Sent: Friday, August 10, 2007 10:36 AM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

I see that on a 5.1 machine you can retrieve it as:

q cplevel 
z/VM Version 5 Release 1.0, service level 0402 (64-bit)   

David Wakser
InfoCrossing 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Lee Stewart
Sent: Friday, August 10, 2007 1:23 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Guest in 31 or 64 bit?

Is there a way to tell from a CP command if a guest is running in 31 bit
or 64 bit mode? Thanks Lee
-- 

Lee Stewart, Senior SE
Sirius Computer Solutions
Phone: (303) 798-2954
Fax:   (720) 228-2321
Email: [EMAIL PROTECTED]
Web:   www.siriuscom.com


This message w/attachments (message) may be privileged, confidential or
proprietary, and if you are not an intended recipient, please notify the
sender, do not use or share it and delete it. Unless specifically
indicated, this message is not an offer to sell or a solicitation of any
investment products or other financial product or service, an official
confirmation of any transaction, or an official statement of Merrill
Lynch. Subject to applicable law, Merrill Lynch may monitor, review and
retain e-communications (EC) traveling through its networks/systems. The
laws of the country of each sender/recipient may impact the handling of
EC, and EC may be archived, supervised and produced in countries other
than the country in which you are located. This message cannot be
guaranteed to be secure or error-free. This message is subject to terms
available at the following link:
http://www.ml.com/e-communications_terms/. By messaging with Merrill
Lynch you consent to the foregoing.



Re: Guest in 31 or 64 bit?

2007-08-10 Thread Alan Ackerman
On Fri, 10 Aug 2007 17:12:00 -0400, Neale Ferguson [EMAIL PROTECTED]
 wrote:

No it program checks on an attempt to issue the SIGP to put the machine
in 64-bit mode.

On Fri, 2007-08-10 at 14:08 -0700, Schuh, Richard wrote:
 Can an XC machine run 64-bit? Isn't XC a pseudo mode invented so that
 CMS could access SFS DIRC directories that were in dataspaces?

=
==
==

I don't think you can run any guest in XC mode besides CMS, but I don't k
now why. Maybe it has to  
do with turning DAT on? Nothing to do with 64-bit mode.

At least, that was my problem #1 when I installed the Marist Linux distri
bution back in early 2000. 
(The XC mode was hiding in a directory profile.) This was 31-bit Linux, s
ince 64-bit didn't exist 
yet (at least outside of IBM).

I wouldn't call it a pseudo-mode, though. It is as real as anything els
e in microcoded hardware 
is. It is special in that it is designed to allow use of dataspaces (and 
access registers) with DAT off. 
It's just that the only operating system that I know of that runs DAT off
 is CMS.

Alan(dot)Ackerman(at)Bank of America(dot)com


Re: Guest in 31 or 64 bit?

2007-08-10 Thread Gillis, Mark
And GCS because it runs DAT off, too. 

-Original Message-
From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On
Behalf Of Alan Ackerman
Sent: Saturday, 11 August 2007 3:07 PM
To: IBMVM@LISTSERV.UARK.EDU
Subject: Re: Guest in 31 or 64 bit?

On Fri, 10 Aug 2007 17:12:00 -0400, Neale Ferguson
[EMAIL PROTECTED]=
 wrote:

No it program checks on an attempt to issue the SIGP to put the machine
in 64-bit mode.

On Fri, 2007-08-10 at 14:08 -0700, Schuh, Richard wrote:
 Can an XC machine run 64-bit? Isn't XC a pseudo mode invented so that
 CMS could access SFS DIRC directories that were in dataspaces?
=
==
==
==

I don't think you can run any guest in XC mode besides CMS, but I don't
k=
now why. Maybe it has to  
do with turning DAT on? Nothing to do with 64-bit mode.

At least, that was my problem #1 when I installed the Marist Linux
distri=
bution back in early 2000. 
(The XC mode was hiding in a directory profile.) This was 31-bit Linux,
s=
ince 64-bit didn't exist 
yet (at least outside of IBM).

I wouldn't call it a pseudo-mode, though. It is as real as anything
els=
e in microcoded hardware 
is. It is special in that it is designed to allow use of dataspaces (and
=
access registers) with DAT off. 
It's just that the only operating system that I know of that runs DAT
off=
 is CMS.

Alan(dot)Ackerman(at)Bank of America(dot)com