IB/qib: Use setup_timer and mod_timer
Use setup_timer and mod_timer API instead of structure assignments. This is done using Coccinelle and semantic patch used for this as follows: @@ expression x,y,z,a,b; @@ -init_timer (&x); +setup_timer (&x, y, z); +mod_timer (&a, b); -x.function = y; -x.data = z; -x.expires = b; -add_timer(&a); Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:

committed by
Doug Ledford

parent
e538e0aca3
commit
e1ac263fcb
@@ -2478,12 +2478,10 @@ void qib_notify_create_mad_agent(struct rvt_dev_info *rdi, int port_idx)
|
||||
|
||||
/* Initialize xmit_wait structure */
|
||||
dd->pport[port_idx].cong_stats.counter = 0;
|
||||
init_timer(&dd->pport[port_idx].cong_stats.timer);
|
||||
dd->pport[port_idx].cong_stats.timer.function = xmit_wait_timer_func;
|
||||
dd->pport[port_idx].cong_stats.timer.data =
|
||||
(unsigned long)(&dd->pport[port_idx]);
|
||||
dd->pport[port_idx].cong_stats.timer.expires = 0;
|
||||
add_timer(&dd->pport[port_idx].cong_stats.timer);
|
||||
setup_timer(&dd->pport[port_idx].cong_stats.timer,
|
||||
xmit_wait_timer_func,
|
||||
(unsigned long)(&dd->pport[port_idx]));
|
||||
mod_timer(&dd->pport[port_idx].cong_stats.timer, 0);
|
||||
}
|
||||
|
||||
void qib_notify_free_mad_agent(struct rvt_dev_info *rdi, int port_idx)
|
||||
|
Reference in New Issue
Block a user