diff options
author | Tejun Heo <htejun@gmail.com> | 2006-05-15 21:03:41 +0900 |
---|---|---|
committer | Tejun Heo <htejun@gmail.com> | 2006-05-15 21:03:41 +0900 |
commit | 6cec4a3943bdfe46e2952bc246f17670f747be8d (patch) | |
tree | 46fa642814683174b6da21c992ef6f672cec3ab5 /include | |
parent | 2115ea94a2d11fbd228b049e667ec2d3e91ca371 (diff) | |
download | linux-3.10-6cec4a3943bdfe46e2952bc246f17670f747be8d.tar.gz linux-3.10-6cec4a3943bdfe46e2952bc246f17670f747be8d.tar.bz2 linux-3.10-6cec4a3943bdfe46e2952bc246f17670f747be8d.zip |
[PATCH] libata-ncq: rename ap->qactive to ap->qc_allocated
Rename ap->qactive to ap->qc_allocated. This is to accomodate
addition of ap->qc_active, mask of active qcs.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/libata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 7c9e280a482..b3a4f8bea82 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -474,7 +474,7 @@ struct ata_port { struct ata_device device[ATA_MAX_DEVICES]; struct ata_queued_cmd qcmd[ATA_MAX_QUEUE]; - unsigned long qactive; + unsigned long qc_allocated; unsigned int active_tag; struct ata_host_stats stats; |