Searched refs:rds_debug_buf_size (Results 1 - 1 of 1) sorted by relevance

/opensolaris-onvv-gate/usr/src/uts/common/io/ib/clients/rds/
H A Drdsib_debug.c39 * of the debug buffer can be changed by setting 'rds_debug_buf_size' in
61 int rds_debug_buf_size = RDS_DEBUG_BUF_SIZE; /* Sz of Debug buf */ variable
87 if (rds_debug_buf_size <= RDS_DEBUG_SIZE_EXTRA_ALLOC) {
88 rds_debug_buf_size = RDS_MIN_DEBUG_BUF_SIZE;
93 rds_debug_buf_size = max(RDS_MIN_DEBUG_BUF_SIZE,
94 rds_debug_buf_size);
96 rds_debug_buf = (char *)kmem_alloc(rds_debug_buf_size, KM_SLEEP);
101 RDS_DPRINTF2("RDS", "rds_debug_buf_size was too small, "
102 "adjusted to %x", rds_debug_buf_size);
113 kmem_free(rds_debug_buf, rds_debug_buf_size);
[all...]

Completed in 42 milliseconds