diff options
author | Sjur Braendeland <sjur.brandeland@stericsson.com> | 2010-05-21 02:16:08 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-24 06:57:41 (GMT) |
commit | 7aecf4944f2c05aafb73b4820e469c74b4ec8517 (patch) | |
tree | b3237c96401a0f35c76798c1b04b19eef129a6da /include/net/caif | |
parent | 9e4b816bc31962ebbb8784d602acd5fa25a08ad8 (diff) | |
download | linux-7aecf4944f2c05aafb73b4820e469c74b4ec8517.tar.xz |
caif: Bugfix - use standard Linux lists
Discovered bug when running high number of parallel connect requests.
Replace buggy home brewed list with linux/list.h.
Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/caif')
-rw-r--r-- | include/net/caif/cfctrl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/caif/cfctrl.h b/include/net/caif/cfctrl.h index 997603f..9402543 100644 --- a/include/net/caif/cfctrl.h +++ b/include/net/caif/cfctrl.h @@ -94,8 +94,8 @@ struct cfctrl_request_info { enum cfctrl_cmd cmd; u8 channel_id; struct cfctrl_link_param param; - struct cfctrl_request_info *next; struct cflayer *client_layer; + struct list_head list; }; struct cfctrl { @@ -103,7 +103,7 @@ struct cfctrl { struct cfctrl_rsp res; atomic_t req_seq_no; atomic_t rsp_seq_no; - struct cfctrl_request_info *first_req; + struct list_head list; /* Protects from simultaneous access to first_req list */ spinlock_t info_list_lock; #ifndef CAIF_NO_LOOP |