Sorry, I have not noticed this thread earlier.
> Hmm, is that part of the diskless client setup code?
> Are there more closed source files that use "nfsdyn" ?
>
Yes, /usr/sadm/lib/wbem/config_tftp is called from /usr/sadm/bin/smdiskles.
I have not seen any other references to "nfsdyn"
>
>
>> 3) Fix for 6350006 BAD TRAP panic, when using unknown nfs protocol
>> version in fstype property
>>
>> should address also sparc,
>> uts/common/os/swapgeneric.c, function rootconf()
>>
>> RLOCK_VFSSW();
>> vsw = vfs_getvfsswbyname(rootfs.bo_fstype);
>> RUNLOCK_VFSSW();
>>
>> should be changed to
>>
>> RLOCK_VFSSW();
>> vsw = vfs_getvfsswbyname(rootfs.bo_fstype);
>> RUNLOCK_VFSSW();
>> if (vsw == NULL) {
>> cmn_err(CE_CONT, "Cannot find %s filesystem\n", fstyp);
>> return (ENXIO);
>>
>
> Minor nit: fstyp isn't defined, we must to use
>
> cmn_err(CE_CONT, "Cannot find %s filesystem\n", rootfs.bo_fstype);
>
Thx, fixed.