Lines Matching defs:fibsize
2388 u_int32_t fibsize, high_addr;
2422 /* Calculate the amount to the fibsize bits */
2423 fibsize = (cm->cm_fib->Header.Size + 127) / 128 - 1;
2436 /* Calculate the amount to the fibsize bits */
2437 fibsize = (sizeof(struct aac_fib_xporthdr) +
2452 if (fibsize > 31)
2453 fibsize = 31;
2457 AAC_MEM0_SETREG4(sc, AAC_SRC_IQUE64_L, (u_int32_t)address + fibsize);
2459 AAC_MEM0_SETREG4(sc, AAC_SRC_IQUE32, (u_int32_t)address + fibsize);
2870 u_int32_t fibsize = 0;
2903 if ((error = copyin((void *)&user_srb->data_len, &fibsize,
2906 if (fibsize > (sc->aac_max_fib_size-sizeof(struct aac_fib_header))) {
2910 if ((error = copyin((void *)user_srb, srbcmd, fibsize)) != 0)
2921 /* check fibsize */
2922 if (fibsize == (sizeof(struct aac_srb) +
2932 } else if (fibsize == (sizeof(struct aac_srb) +
2952 user_reply = (char *)arg + fibsize;