|
@@ -70,6 +70,7 @@ static void transport_complete_task_attr(struct se_cmd *cmd);
|
|
|
static void transport_handle_queue_full(struct se_cmd *cmd,
|
|
|
struct se_device *dev);
|
|
|
static int transport_generic_get_mem(struct se_cmd *cmd);
|
|
|
+static void target_get_sess_cmd(struct se_session *, struct se_cmd *, bool);
|
|
|
static void transport_put_cmd(struct se_cmd *cmd);
|
|
|
static int transport_set_sense_codes(struct se_cmd *cmd, u8 asc, u8 ascq);
|
|
|
static void target_complete_ok_work(struct work_struct *work);
|
|
@@ -2408,8 +2409,8 @@ EXPORT_SYMBOL(transport_generic_free_cmd);
|
|
|
* @se_cmd: command descriptor to add
|
|
|
* @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
|
|
|
*/
|
|
|
-void target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
|
|
|
- bool ack_kref)
|
|
|
+static void target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
|
|
|
+ bool ack_kref)
|
|
|
{
|
|
|
unsigned long flags;
|
|
|
|
|
@@ -2429,7 +2430,6 @@ void target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
|
|
|
se_cmd->check_release = 1;
|
|
|
spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
|
|
|
}
|
|
|
-EXPORT_SYMBOL(target_get_sess_cmd);
|
|
|
|
|
|
static void target_release_cmd_kref(struct kref *kref)
|
|
|
{
|