@@ -1518,7 +1518,7 @@ static void lio_release_cmd(struct se_cmd *se_cmd)
{
struct iscsit_cmd *cmd = container_of(se_cmd, struct iscsit_cmd, se_cmd);
- target_debug("Entering lio_release_cmd for se_cmd: %p\n", se_cmd);
+ target_debug("Entering %s() for se_cmd: %p\n", __func__, se_cmd);
iscsit_release_cmd(cmd);
}
@@ -375,7 +375,7 @@ static void iscsi_target_sk_data_ready(struct sock *sk)
bool rc;
trace_sk_data_ready(sk);
- target_debug("Entering iscsi_target_sk_data_ready: conn: %p\n", conn);
+ target_debug("Entering %s(): conn: %p\n", __func__, conn);
write_lock_bh(&sk->sk_callback_lock);
if (!sk->sk_user_data) {
@@ -403,7 +403,7 @@ static void iscsi_target_sk_data_ready(struct sock *sk)
rc = schedule_delayed_work(&conn->login_work, 0);
if (!rc) {
- target_debug("iscsi_target_sk_data_ready, schedule_delayed_work got false\n");
+ target_debug("%s(): schedule_delayed_work got false\n", __func__);
}
write_unlock_bh(&sk->sk_callback_lock);
}
@@ -418,7 +418,7 @@ static void iscsi_target_set_sock_callbacks(struct iscsit_conn *conn)
return;
sk = conn->sock->sk;
- target_debug("Entering iscsi_target_set_sock_callbacks: conn: %p\n", conn);
+ target_debug("Entering %s(): conn: %p\n", __func__, conn);
write_lock_bh(&sk->sk_callback_lock);
sk->sk_user_data = conn;
@@ -440,7 +440,7 @@ static void iscsi_target_restore_sock_callbacks(struct iscsit_conn *conn)
return;
sk = conn->sock->sk;
- target_debug("Entering iscsi_target_restore_sock_callbacks: conn: %p\n", conn);
+ target_debug("Entering %s(): conn: %p\n", __func__, conn);
write_lock_bh(&sk->sk_callback_lock);
if (!sk->sk_user_data) {
@@ -461,7 +461,7 @@ static int iscsi_target_do_login(struct iscsit_conn *, struct iscsi_login *);
static bool __iscsi_target_sk_check_close(struct sock *sk)
{
if (sk->sk_state == TCP_CLOSE_WAIT || sk->sk_state == TCP_CLOSE) {
- target_debug("__iscsi_target_sk_check_close: TCP_CLOSE_WAIT|TCP_CLOSE,returning TRUE\n");
+ target_debug("%s(): TCP_CLOSE_WAIT|TCP_CLOSE, returning TRUE\n", __func__);
return true;
}
return false;
@@ -533,7 +533,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work)
int rc, zero_tsih = login->zero_tsih;
bool state;
- target_debug("entering iscsi_target_do_login_rx, conn: %p, %s:%d\n", conn, current->comm,
+ target_debug("Entering %s(), conn: %p, %s:%d\n", __func__, conn, current->comm,
current->pid);
spin_lock(&conn->login_worker_lock);
@@ -559,12 +559,12 @@ static void iscsi_target_do_login_rx(struct work_struct *work)
spin_unlock(&tpg->tpg_state_lock);
if (!state) {
- target_debug("iscsi_target_do_login_rx: tpg_state != TPG_STATE_ACTIVE\n");
+ target_debug("%s(): tpg_state != TPG_STATE_ACTIVE\n", __func__);
goto err;
}
if (iscsi_target_sk_check_close(conn)) {
- target_debug("iscsi_target_do_login_rx, TCP state CLOSE\n");
+ target_debug("%s(): TCP state CLOSE\n", __func__);
goto err;
}
@@ -572,7 +572,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work)
rc = iscsit_set_login_timer_kworker(conn, current);
if (rc < 0) {
/* The login timer has already expired */
- target_debug("iscsi_target_do_login_rx, login failed\n");
+ target_debug("%s(): login failed\n", __func__);
goto err;
}
@@ -582,7 +582,7 @@ static void iscsi_target_do_login_rx(struct work_struct *work)
if (rc < 0)
goto err;
- target_debug("iscsi_target_do_login_rx after rx_login_io, %p, %s:%d\n", conn, current->comm,
+ target_debug("%s(): after rx_login_io, %p, %s:%d\n", __func__, conn, current->comm,
current->pid);
/*
@@ -646,7 +646,7 @@ static void iscsi_target_sk_state_change(struct sock *sk)
void (*orig_state_change)(struct sock *);
bool state;
- target_debug("Entering iscsi_target_sk_state_change\n");
+ target_debug("Entering %s()\n", __func__);
write_lock_bh(&sk->sk_callback_lock);
conn = sk->sk_user_data;
@@ -697,7 +697,7 @@ static void iscsi_target_sk_state_change(struct sock *sk)
* the remaining iscsi connection resources.
*/
if (state) {
- target_debug("iscsi_target_sk_state_change got failed state\n");
+ target_debug("%s() got failed state\n", __func__);
set_bit(LOGIN_FLAGS_CLOSED, &conn->login_flags);
state = test_bit(LOGIN_FLAGS_INITIAL_PDU, &conn->login_flags);
write_unlock_bh(&sk->sk_callback_lock);
@@ -1031,7 +1031,7 @@ void iscsit_login_timeout(struct timer_list *t)
struct iscsit_conn *conn = from_timer(conn, t, login_timer);
struct iscsi_login *login = conn->login;
- target_debug("Entering iscsi_target_login_timeout >>>>>>>>>>>>>>>>>>>\n");
+ target_debug("Entering %s() >>>>>>>>>>>>>>>>>>>\n", __func__);
spin_lock_bh(&conn->login_timer_lock);
login->login_failed = 1;
@@ -1115,7 +1115,7 @@ static int sbp_fetch_command(struct sbp_target_request *req)
min_t(int, cmd_len, sizeof(req->orb.command_block)));
if (cmd_len > sizeof(req->orb.command_block)) {
- target_debug("sbp_fetch_command: filling in long command\n");
+ target_debug("%s(): filling in long command\n", __func__);
copy_len = cmd_len - sizeof(req->orb.command_block);
ret = sbp_run_request_transaction(req,
@@ -1194,20 +1194,20 @@ static void sbp_handle_command(struct sbp_target_request *req)
ret = sbp_fetch_command(req);
if (ret) {
- target_debug("sbp_handle_command: fetch command failed: %d\n", ret);
+ target_debug("%s(): fetch command failed: %d\n", __func__, ret);
goto err;
}
ret = sbp_fetch_page_table(req);
if (ret) {
- target_debug("sbp_handle_command: fetch page table failed: %d\n", ret);
+ target_debug("%s(): fetch page table failed: %d\n", __func__, ret);
goto err;
}
unpacked_lun = req->login->login_lun;
sbp_calc_data_length_direction(req, &data_length, &data_dir);
- target_debug("sbp_handle_command ORB:0x%llx unpacked_lun:%d data_len:%d data_dir:%d\n",
+ target_debug("%s(): ORB:0x%llx unpacked_lun:%d data_len:%d data_dir:%d\n", __func__,
req->orb_pointer, unpacked_lun, data_length, data_dir);
/* only used for printk until we do TMRs */
@@ -1329,12 +1329,12 @@ static int sbp_send_status(struct sbp_target_request *req)
rc = sbp_run_request_transaction(req, TCODE_WRITE_BLOCK_REQUEST,
login->status_fifo_addr, &req->status, length);
if (rc != RCODE_COMPLETE) {
- target_debug("sbp_send_status: write failed: 0x%x\n", rc);
+ target_debug("%s(): write failed: 0x%x\n", __func__, rc);
ret = -EIO;
goto put_ref;
}
- target_debug("sbp_send_status: status write complete for ORB: 0x%llx\n", req->orb_pointer);
+ target_debug("%s(): status write complete for ORB: 0x%llx\n", __func__, req->orb_pointer);
/*
* Drop the extra ACK_KREF reference taken by target_submit_cmd()
* ahead of sbp_check_stop_free() -> transport_generic_free_cmd()