525.78.01

This commit is contained in:
Andy Ritger
2023-01-05 10:40:27 -08:00
parent 9594cc0169
commit dac2350c7f
180 changed files with 9465 additions and 4853 deletions

View File

@@ -139,6 +139,12 @@ typedef void *PUID_TOKEN;
/// Internal Client handles start at this base value
#define RS_CLIENT_INTERNAL_HANDLE_BASE 0xC1E00000
/// VF Client handles start at this base value
#define RS_CLIENT_VF_HANDLE_BASE 0xE0000000
/// Get the VF client handle range for gfid
#define RS_CLIENT_GET_VF_HANDLE_BASE(gfid) (RS_CLIENT_VF_HANDLE_BASE + ((gfid) - 1) * RS_CLIENT_HANDLE_MAX)
//
// Print a warning if any client's resource count exceeds this
// threshold. Unless this was intentional, this is likely a client bug.