* [PATCH 1/2] target/core: Declare target_release_reservation() 'static'
@ 2019-11-11 18:29 Bart Van Assche
2019-11-11 19:03 ` Roman Bolshakov
2019-11-13 1:11 ` Martin K. Petersen
0 siblings, 2 replies; 3+ messages in thread
From: Bart Van Assche @ 2019-11-11 18:29 UTC (permalink / raw)
To: target-devel
Since this function is only used inside the source file in which it has
been defined, declare it 'static'. See also commit fae43461f8f2 ("scsi:
target/core: Rework the SPC-2 reservation handling code").
Cc: Mike Christie <mchristi@redhat.com>
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
---
drivers/target/target_core_pr.c | 2 +-
drivers/target/target_core_pr.h | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c
index 5e931690e697..6a72b61e0076 100644
--- a/drivers/target/target_core_pr.c
+++ b/drivers/target/target_core_pr.c
@@ -187,7 +187,7 @@ static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd)
return 0;
}
-void target_release_reservation(struct se_device *dev)
+static void target_release_reservation(struct se_device *dev)
{
dev->reservation_holder = NULL;
dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS;
diff --git a/drivers/target/target_core_pr.h b/drivers/target/target_core_pr.h
index a31c93e4e19c..198fad5c89dc 100644
--- a/drivers/target/target_core_pr.h
+++ b/drivers/target/target_core_pr.h
@@ -58,7 +58,6 @@ extern struct kmem_cache *t10_pr_reg_cache;
extern void core_pr_dump_initiator_port(struct t10_pr_registration *,
char *, u32);
-extern void target_release_reservation(struct se_device *dev);
extern sense_reason_t target_scsi2_reservation_release(struct se_cmd *);
extern sense_reason_t target_scsi2_reservation_reserve(struct se_cmd *);
extern int core_scsi3_alloc_aptpl_registration(
--
2.24.0.rc1.363.gb1bccd3e3d-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] target/core: Declare target_release_reservation() 'static'
2019-11-11 18:29 [PATCH 1/2] target/core: Declare target_release_reservation() 'static' Bart Van Assche
@ 2019-11-11 19:03 ` Roman Bolshakov
2019-11-13 1:11 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Roman Bolshakov @ 2019-11-11 19:03 UTC (permalink / raw)
To: target-devel
On Mon, Nov 11, 2019 at 10:29:43AM -0800, Bart Van Assche wrote:
> Since this function is only used inside the source file in which it has
> been defined, declare it 'static'. See also commit fae43461f8f2 ("scsi:
> target/core: Rework the SPC-2 reservation handling code").
>
> Cc: Mike Christie <mchristi@redhat.com>
> Signed-off-by: Bart Van Assche <bvanassche@acm.org>
> ---
> drivers/target/target_core_pr.c | 2 +-
> drivers/target/target_core_pr.h | 1 -
> 2 files changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/target/target_core_pr.c b/drivers/target/target_core_pr.c
> index 5e931690e697..6a72b61e0076 100644
> --- a/drivers/target/target_core_pr.c
> +++ b/drivers/target/target_core_pr.c
> @@ -187,7 +187,7 @@ static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd)
> return 0;
> }
>
> -void target_release_reservation(struct se_device *dev)
> +static void target_release_reservation(struct se_device *dev)
> {
> dev->reservation_holder = NULL;
> dev->dev_reservation_flags &= ~DRF_SPC2_RESERVATIONS;
> diff --git a/drivers/target/target_core_pr.h b/drivers/target/target_core_pr.h
> index a31c93e4e19c..198fad5c89dc 100644
> --- a/drivers/target/target_core_pr.h
> +++ b/drivers/target/target_core_pr.h
> @@ -58,7 +58,6 @@ extern struct kmem_cache *t10_pr_reg_cache;
>
> extern void core_pr_dump_initiator_port(struct t10_pr_registration *,
> char *, u32);
> -extern void target_release_reservation(struct se_device *dev);
> extern sense_reason_t target_scsi2_reservation_release(struct se_cmd *);
> extern sense_reason_t target_scsi2_reservation_reserve(struct se_cmd *);
> extern int core_scsi3_alloc_aptpl_registration(
> --
> 2.24.0.rc1.363.gb1bccd3e3d-goog
>
Reviewed-by: Roman Bolshakov <r.bolshakov@yadro.com>
Thanks,
Roman
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] target/core: Declare target_release_reservation() 'static'
2019-11-11 18:29 [PATCH 1/2] target/core: Declare target_release_reservation() 'static' Bart Van Assche
2019-11-11 19:03 ` Roman Bolshakov
@ 2019-11-13 1:11 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2019-11-13 1:11 UTC (permalink / raw)
To: target-devel
Bart,
> Since this function is only used inside the source file in which it has
> been defined, declare it 'static'. See also commit fae43461f8f2 ("scsi:
> target/core: Rework the SPC-2 reservation handling code").
Applied to 5.5/scsi-queue, thanks!
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-13 1:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-11 18:29 [PATCH 1/2] target/core: Declare target_release_reservation() 'static' Bart Van Assche
2019-11-11 19:03 ` Roman Bolshakov
2019-11-13 1:11 ` Martin K. Petersen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.