- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Kernel Formula
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 09:41 PM
08-17-2006 09:41 PM
Kernel Formula
http://h20331.www2.hp.com/Hpsub/cache/285140-0-0-225-121.html
maxdsiz =
HP-UX 10.20 2063835136 (decimal)
UX 11x for 32 bits apps using +q3p: 0xC0000000
maxssiz= 1024*1024*80 (corresponds to 80MB)
maxtsiz= 1024*1024*1024 (corresponds to 1GB)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 10:01 PM
08-17-2006 10:01 PM
Re: Kernel Formula
if you are running 10.20 on the machine set maxdsiz (datasegment) to 2063835136
If you are running any version of HPUX 11, like 11.11 etc., and are running 32 bit applications and want to use link to use shared memory in the third quadrant (+q3p) you can set the maxdsiz to 3GB (C0000000 in hex)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 10:30 PM
08-17-2006 10:30 PM
Re: Kernel Formula
In practice, Bill Hassell and therefore also me removes formulas from the kernel when possible. The formulas often do not refrect reality.
So if you are planning on using a formula I recommend you calcucate the hard number you wish to use with a formula and thne use the number straight up not permitting future changes to change this parameter.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 10:45 PM
08-17-2006 10:45 PM
Re: Kernel Formula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2006 11:16 PM
08-17-2006 11:16 PM
Re: Kernel Formula
m32=mem;if(mem>1024)m32=1024; maxdsiz=m32*1024*1024
m64=mem;if(mem>4048)m64=4048; maxdsiz_64bit=m64*1024*1024
Sorry, but I don't have any formula for maxtsize.
Look at http://docs.hp.com/en/939/KCParms/KCparams.OverviewAll.html
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2006 01:08 AM
08-18-2006 01:08 AM
Re: Kernel Formula
The maxdsiz, you just take whichever is appropriate for your system. You can enter the value in either decimal or hex format, so either value you list will work.
I'm not sure what you are asking on the maxssiz and maxtsiz. I should think that the formula are simple. You do know multiplication, right?
maxssiz = 1024*1024*80 = 83886080
maxtsiz = 1024*1024*1024 = 1073741824
Is that what you are asking?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2006 02:45 AM
08-21-2006 02:45 AM
Re: Kernel Formula
HP-UX PREREQS: maxdsiz HP-UX kernel parameter is incorrect
maxdsiz should be greater than or equal to 65536 Pages
current maxdsiz value is: 2 Pages
HP-UX PREREQS: maxtsiz HP-UX kernel parameter is incorrect
maxtsiz should be greater than or equal to 32768 Pages
current maxtsiz value is: 20403 Pages
HP-UX PREREQS: Please use sysdef(1M) command to get additional information
Please use sam(1M) command to modify kernel parameters
Despite modifying the kernel parameters as advised in the documentation I have the above is correct. when I sysdef | grep maxdsiz, i get the following output: -
maxdsiz 2 - 0-655360 Pages -
Any help will be greatly appreciated.