- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- gh_exec_data system parameter
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-16-2005 08:33 AM
08-16-2005 08:33 AM
Thanks in advance!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 10:05 AM
08-16-2005 10:05 AM
Re: gh_exec_data system parameter
I have never been involved with granularity hint regions before but I can give you another description of the SYSGEN parameter GH_EXEC_DATA. It is the size of the executive image data huge page. As a matter of interest, GH_EXEC_CODE is the size of the executive image code huge page.
According to my infrequently used copy of OpenVMS Alpha Internals - "During system initialisation, OpenVMS creates one or more granularity hint regions for several specific uses. The term 'huge page' refers to the granularity hint region or regions associated with each of these particular uses. A huge page consists of more than one granularity hint region if it requires more physical pages than can be mapped by one TB entry."
If you require any further assistance I am sure our learned colleagues will be more than happy to help when they log in tomorrow.
Regards,
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 10:09 AM
08-16-2005 10:09 AM
Re: gh_exec_data system parameter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 10:11 AM
08-16-2005 10:11 AM
Re: gh_exec_data system parameter
"Granularity Hint Regions" are a neat way of speeding up virtual address translations. "Huge pages" are large chunks of virtually and physically contiguous pages allocated at boot time, so that they can all be addressed through a single page table entry. This skips an entire level of virtual address translation.
This can only be done at boot time, before memory has had a chance to be fragmented. There are some SYSGEN parameters to control how much memory is allocated for system use (GH_EXEC_CODE and GH_EXEC_DATA), and user (GH_RES_CODE, GH_RES_DATA and GH_RERVPGCNT).
You're unlikely to ever need to mess with the GH_EXEC* parameters, but if you want to install your own /RESIDENT images, you may need to adjust the GH_RES* parameters to allocate sufficient space.
See SHOW MEMORY "Granularity Hint Regions" to see how it's configured on your system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 10:22 AM
08-16-2005 10:22 AM
Re: gh_exec_data system parameter
I believe that granularity hint regions (GHRs) are not subject to paging. Is it possible that something has changed on your system recently and Autogen is not prepared to allocate so much memory to GHRs next time you boot your system?
Regards,
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 10:34 AM
08-16-2005 10:34 AM
Re: gh_exec_data system parameter
Granularity Hint Regions (pages): Total Free In Use Released
Execlet code region 1024 112 762 150
Execlet data region 512 131 273 108
The main reason that I asked the original question was that our Fall semester starts Aug 29 and we always get a BIG jump in usage the first two days with students adding and dropping classes. So I wanted to know if I should be concerned about VMS reducing that value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2005 02:47 PM
08-16-2005 02:47 PM
Solution>So I wanted to know if I should be
>concerned about VMS reducing that value.
Not at all. Each "huge page" is 512 pagelets of virtually and physically contiguous memory. Obviously it's unlikely that the stuff OpenVMS copies into the region will fit exactly, so once everything is done, OpenVMS releases any left over pages to the free list.
So, those physical pages will still be mapped to the Granularity Hint Region, but they're also available to be mapped to other virtual addresses by other processes.
It's "safe" to do this because the GHR is exec access only, and we can trust the exec code to not overstep their memory boundaries.
AUTOGEN will reduce GH_EXEC_DATA if it sees unused pages in the GHR. The important thing to remember is that all this happens at boot time. Once the system is running, there are no changes to the GH_EXEC* regions, regardless of workload. Indeed, freeing up these pages is GOOD for you since it makes a few more pages of memory available to help handle the increased load.
On the other hand, the GH_RES* regions can be subject to changes over time (for example, if you want to install and uninstall /RESIDENT images), so those paramters can be used to "protect" apparently unused pages at the end of those GHRs to prevent them from being freed for other purposes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2005 03:03 AM
08-17-2005 03:03 AM