Lines Matching defs:ExpStatSN
1242 "CmdSN=%u, ExpStatSN=%u, StatSN=%u, ExpCmdSN=%u,"
1249 "CmdSN=%u, ExpStatSN=%u, StatSN=%u\n",
2253 uint32_t ExpStatSN;
2268 ExpStatSN = from_be32(&reqh->exp_stat_sn);
2274 "CmdSN=%u, ExpStatSN=%u, StatSN=%u, ExpCmdSN=%u, MaxCmdSN=%u\n",
2275 pdu->cmd_sn, ExpStatSN, conn->StatSN, conn->sess->ExpCmdSN,
2278 if (ExpStatSN != conn->StatSN) {
2280 SPDK_ERRLOG("StatSN(%u) error\n", ExpStatSN);
2284 SPDK_DEBUGLOG(iscsi, "StatSN(%u) rewound\n", ExpStatSN);
2285 conn->StatSN = ExpStatSN;
2515 uint32_t ExpStatSN;
2525 ExpStatSN = from_be32(&reqh->exp_stat_sn);
2540 "CmdSN=%u, ExpStatSN=%u, StatSN=%u, ExpCmdSN=%u, MaxCmdSN=%u\n",
2541 pdu->cmd_sn, ExpStatSN, conn->StatSN,
2549 SPDK_DEBUGLOG(iscsi, "CmdSN=%u, ExpStatSN=%u, StatSN=%u\n",
2550 pdu->cmd_sn, ExpStatSN, conn->StatSN);
2553 if (ExpStatSN != conn->StatSN) {
2555 ExpStatSN, conn->StatSN);
4010 "but already got ExpStatSN: 0x%08x on CID:%hu.\n",
4407 remove_acked_pdu(struct spdk_iscsi_conn *conn, uint32_t ExpStatSN)
4412 conn->exp_statsn = spdk_min(ExpStatSN, conn->StatSN);
4426 uint32_t ExpStatSN;
4473 ExpStatSN = from_be32(&reqh->exp_stat_sn);
4474 if (spdk_sn32_gt(ExpStatSN, conn->StatSN)) {
4475 SPDK_DEBUGLOG(iscsi, "StatSN(%u) advanced\n", ExpStatSN);
4476 ExpStatSN = conn->StatSN;
4480 remove_acked_pdu(conn, ExpStatSN);