This portal is to open public enhancement requests against IBM Power Systems products, including IBM i. 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.
As described in the section "User-defined file system and independent auxiliary storage pools" (https://www.ibm.com/docs/en/i/7.6.0?topic=udfsu-user-defined-file-system-independent-auxiliary-storage-pools), the '/dev/asp_name/QDEFAULT.UDFS' user-defined file system (UDFS) is automatically mounted over '/asp_name' when the IASP is varied on. After that, the default UDFS can be manually unmounted and another UDFS created with CASE(*MIXED) can then be mounted over the '/asp_name' directory. The sequence of steps for IASP01 would be:
1) Vary-on IASP01
2) Save all objects from '/IASP01'.
3) CRTUDFS UDFS('/dev/IASP01/Mixed.UDFS') CASE(*MIXED)
4) UNMOUNT TYPE(*UDFS) MNTOVRDIR('/IASP01')
5) MOUNT TYPE(*UDFS) MFS('/dev/IASP01/Mixed.UDFS') MNTOVRDIR('/IASP01')
6) Restore all objects saved in step 2 to '/IASP01'.
You would have to repeat steps 4 and 5 every time you varied on IASP01, prior to any activity occurring in the IASP.
Another option is a little more complicated up front, but then simpler going forward. The sequence of steps for this option:
1) Vary-on IASP01
2) Save all objects from '/IASP01'.
3) Use DSPAUT '/dev/IASP01/QDEFAULT.UDFS' to note ownership and other authority information for the existing UDFS.
4) UNMOUNT TYPE(*UDFS) MNTOVRDIR('/IASP01')
5) RNM OBJ('/dev/IASP01/QDEFAULT.UDFS') NEWOBJ('OldQdefault.UDFS')
6) CRTUDFS UDFS('/dev/IASP01/QDEFAULT.UDFS') CASE(*MIXED)
7) Use WRKAUT or CHGAUT to set all authority values for the new UDFS to be the same as recorded in step 3.
8) MOUNT TYPE(*UDFS) MFS('/dev/IASP01/QDEFAULT.UDFS') MNTOVRDIR('/IASP01')
9) Restore all objects saved in step 2 to '/IASP01'.
After this, your mixed-case UDFS will automatically be mounted over '/IASP01' every time the IASP is varied on. If everything looks good at this point, you could then DLTUDFS UDFS('/dev/IASP01/OldQdefault.UDFS').
-- IBM i file systems team