Lines Matching refs:status
46 int status;
173 * This is a hack. We will move status to a proper place once we land
178 return READ_ONCE(conn->status) == KSMBD_SESS_GOOD;
183 return READ_ONCE(conn->status) == KSMBD_SESS_NEED_NEGOTIATE;
188 return READ_ONCE(conn->status) == KSMBD_SESS_NEED_RECONNECT;
193 return READ_ONCE(conn->status) == KSMBD_SESS_EXITING;
198 return READ_ONCE(conn->status) == KSMBD_SESS_RELEASING;
203 WRITE_ONCE(conn->status, KSMBD_SESS_NEW);
208 WRITE_ONCE(conn->status, KSMBD_SESS_GOOD);
213 WRITE_ONCE(conn->status, KSMBD_SESS_NEED_NEGOTIATE);
218 WRITE_ONCE(conn->status, KSMBD_SESS_NEED_RECONNECT);
223 WRITE_ONCE(conn->status, KSMBD_SESS_EXITING);
228 WRITE_ONCE(conn->status, KSMBD_SESS_RELEASING);
231 void ksmbd_all_conn_set_status(u64 sess_id, u32 status);