z/OS UNIX System Services File System Interface Reference
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


vfs_inactive — Batch inactivate vnodes

z/OS UNIX System Services File System Interface Reference
SA23-2285-00

Function

The vfs_inactive disassociates multiple vnodes from the PFS's related inodes.

Environment on entry and exit

See Environment for PFS operations.

Input parameter format

vfs_inactive (Token_structure,
             OSI_structure,
             Audit_structure,
             InactBuffer_structure,
             InactBuffer_length,
             Return_value,
             Return_code,
             Reason_code)

Parameters

Token_structure
Supplied parameter
Type:
TOKSTR
Length:
Specified by TOKSTR.ts_hdr.cblen.

The Token_structure represents the file system (VFS) that is being operated on. It contains the PFS's initialization token, and mount token. Refer to LFS/PFS control block structure for a discussion of this structure, and to the TOKSTR typedef in BPXYPFSI in Interface structures for C language servers and clients for its mapping.

OSI_structure
Supplied and returned parameter
Type:
OSI
Length:
Specified by OSI.osi_hdr.cblen.

The OSI_structure contains information that is used by the OSI operations that may be called by the PFS. See OSI services for more information.

It also contains MVS-specific information that needs to be passed to the PFS, including SMF accounting fields, a work area, a recovery area, and an optional pointer to an output ATTR structure. For more details on the OSI structure, see The OSI structure.

This area is mapped by the OSI typedef in BPXYPFSI in Interface structures for C language servers and clients.

Audit_structure
Supplied parameter
Type:
CRED
Length:
Specified by CRED.cred_hdr.cblen.

The Audit_structure contains information that is used by the security product for access checks and auditing. It is passed to most SAF routines that are invoked by the PFS.

Refer to Security responsibilities and considerations for a discussion of security processing, and to the CRED typedef in BPXYPFSI in Interface structures for C language servers and clients for the mapping of this structure.

InactBuffer_structure
Supplied and returned parameter
Type:
IAB
Length:
Calculated: An IAB header plus one IAB entry for each selected vnode.

The InactBuffer_structure contains information about the vfs and the vnodes that are to be made inactive. This area is mapped by the IAB typedef in the BPXYPFSI header file (Appendix D).

This structure contains the following fields:
Server_devno
A fullword that contains the device number of this vfs.
Each Server_devno is followed by an array of records containing the following information:
Vnode_pointer
A pointer to the vnode.
Pfs_token
An eight-byte area that contains the pfs token for this vnode.
Server_Vnode
A pointer to the server's vnode.
Return_Value
A fullword in which the vfs_inactive operation returns the results of the operation for the vnode. A nonzero value indicates that the operation was not successful.
InactBuffer_length
Supplied parameter
Type:
Integer
Length:
Fullword

A fullword that supplies the length of the InactBuffer_structure.

Return_value
Returned parameter
Type:
Integer
Length:
Fullword
The name of a fullword in which the vfs_inactive service returns the results of the operation, as one of the following:
Return_value
Meaning
-1
The operation was not successful. The Return_code and Reason_Code values must be filled in by the PFS when Return_value is -1.
0
The operation was successful.
Return_code
Returned parameter
Type:
Integer
Length:
Fullword

A fullword in which the vfs_inactive service stores the return code. The vfs_inactive service returns Return_code only if Return_value is -1. For a complete list of supported return code values, see z/OS UNIX System Services Messages and Codes.

The vfs_inactive service should support the following error value:
Return_code Explanation
EIO An I/O error occurred while accessing the file.
Reason_code
Returned parameter
Type:
Integer
Length:
Fullword

A fullword in which the vfs_inactive service stores the reason code. The vfs_inactive service returns Reason_code only if Return_value is -1. Reason_code further qualifies the Return_code value. These reason codes are documented by the PFS.

Implementation notes

Overview of vfs_inactive processing
Creating, referring to, and inactivating file vnodes provides an overview of file inactivate processing.
Specific processing notes
  • The Return_value for each vnode that is being made inactive is returned in the InactBuf_structure while the results of the vfs_inactive service is provided in the returned parameters.
  • If a transient error, such as an I/O error, is encountered, the Return_value should be set to -1. In this case, the request is retried later.
  • If a permanent error that prevents the specified file or directory from being used is encountered, Return_value should be set to zero. In this case, all references to the file or directory are removed from the LFS and the request is not retried. The PFS must not issue a signal-enabled wait during inactivate processing. Waiting and posting provides an overview of wait and post processing.
  • If a file's link count is zero, but its open count is not zero, the PFS should ignore the open count and delete the file's data along with the file. This might happen, for example, when an address space is canceled right after vn_open finishes in the PFS, but before the LFS regains control.
Serialization provided by the LFS
The vfs_inactive operation is invoked with an exclusive latch held on the file system containing the vnode.
Security calls to be made by the PFS
None.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014