HID: uhid: turn report_id into u32
All accesses to @report_id are protected by @qlock. No need to use an atomic. Signed-off-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
25be7fe2be
commit
8cad5b0171
1 changed files with 4 additions and 3 deletions
|
@ -44,10 +44,11 @@ struct uhid_device {
|
||||||
__u8 tail;
|
__u8 tail;
|
||||||
struct uhid_event *outq[UHID_BUFSIZE];
|
struct uhid_event *outq[UHID_BUFSIZE];
|
||||||
|
|
||||||
|
/* blocking GET_REPORT support; state changes protected by qlock */
|
||||||
struct mutex report_lock;
|
struct mutex report_lock;
|
||||||
wait_queue_head_t report_wait;
|
wait_queue_head_t report_wait;
|
||||||
atomic_t report_done;
|
atomic_t report_done;
|
||||||
atomic_t report_id;
|
u32 report_id;
|
||||||
struct uhid_event report_buf;
|
struct uhid_event report_buf;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -163,7 +164,7 @@ static int uhid_hid_get_raw(struct hid_device *hid, unsigned char rnum,
|
||||||
|
|
||||||
spin_lock_irqsave(&uhid->qlock, flags);
|
spin_lock_irqsave(&uhid->qlock, flags);
|
||||||
ev->type = UHID_FEATURE;
|
ev->type = UHID_FEATURE;
|
||||||
ev->u.feature.id = atomic_inc_return(&uhid->report_id);
|
ev->u.feature.id = ++uhid->report_id;
|
||||||
ev->u.feature.rnum = rnum;
|
ev->u.feature.rnum = rnum;
|
||||||
ev->u.feature.rtype = report_type;
|
ev->u.feature.rtype = report_type;
|
||||||
|
|
||||||
|
@ -497,7 +498,7 @@ static int uhid_dev_feature_answer(struct uhid_device *uhid,
|
||||||
spin_lock_irqsave(&uhid->qlock, flags);
|
spin_lock_irqsave(&uhid->qlock, flags);
|
||||||
|
|
||||||
/* id for old report; drop it silently */
|
/* id for old report; drop it silently */
|
||||||
if (atomic_read(&uhid->report_id) != ev->u.feature_answer.id)
|
if (uhid->report_id != ev->u.feature_answer.id)
|
||||||
goto unlock;
|
goto unlock;
|
||||||
if (atomic_read(&uhid->report_done))
|
if (atomic_read(&uhid->report_done))
|
||||||
goto unlock;
|
goto unlock;
|
||||||
|
|
Loading…
Add table
Reference in a new issue