This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
Due to processing by IBM, this request was reassigned to have the following updated attributes:
Brand - Servers and Systems Software
Product family - z Systems Software
Product - z/TPF
For recording keeping, the previous attributes were:
Brand - WebSphere
Product family - Transaction Processing
Product - z/TPF
Information provided on how to map /tmp to MFS.
Thank you for your reply. Please change the status of this RFE to Information Provided.
Hello,
We are ok for the first option.
Regards.
Didier Dusart.
More information needed - please comment on the two options described above.
Here are some options for this request. Please comment on these options.
The first option is to map the "/tmp" directory into a MFS (memory-mapped file system). The thought being that /tmp is typically considered temporary and could be lost when the system is re-started. This would skip the use of 4D6 Pool Usage.
The second option would be to allow for a configurable option in the tpf_mail.conf file (or environment variable) which allows the operator to specify the directory to create this temporary file which is used for zmail commands. The default would be '/tmp' to keep existing behavior uninterrupted, but could be overridden with this new option. If the customer already has a mmap'd file system they could point to that. If the customer wants to create a new memory mapped File System directory then the following procedures could be followed:
tmpMesgDir = /tmp2
Then tmp2 could potentially be mapped as a MFS directory (bypassing the pool usage).
zfile mkdir /tmp2
zfile chmod ??? /tmp2 <-- setup to limit access if desired
zfile chown ??? /tmp2 <-- setup to limit access if desired
zfile mount -t mfs -o -I=5,-S=5,-T=10 /tmp2 <-- where I is initial size, S is increment MB's and T is total size (MB's)
If /tmp2 were to solely be used for zmail messages, then the directory could be very very small, as the files are deleted after the message is wtopc'd out.
The second option requires coding updates from the lab.