Re: [Outreachy kernel] Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Julia Lawall
On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > On Wed, Oct 18, 2017 at 8:29 PM, Julia Lawall wrote: > > > On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > > > > > On Wed, Oct 18, 2017 at 6:01 PM, Greg KH >

Re: [Outreachy kernel] Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Julia Lawall
On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > On Wed, Oct 18, 2017 at 8:29 PM, Julia Lawall wrote: > > > On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > > > > > On Wed, Oct 18, 2017 at 6:01 PM, Greg KH >wrote: > >       On Thu, Oct 05, 2017 at

Re: [Outreachy kernel] Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Julia Lawall
On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > On Wed, Oct 18, 2017 at 6:01 PM, Greg KH wrote: > On Thu, Oct 05, 2017 at 03:16:42PM +0530, Srishti Sharma wrote: > > This is a cleanup patch and doesn't change runtime behavior. > It > >

Re: [Outreachy kernel] Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Julia Lawall
On Wed, 18 Oct 2017, Srishti Sharma wrote: > > > On Wed, Oct 18, 2017 at 6:01 PM, Greg KH wrote: > On Thu, Oct 05, 2017 at 03:16:42PM +0530, Srishti Sharma wrote: > > This is a cleanup patch and doesn't change runtime behavior. > It > > changes an open coded list

Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Greg KH
On Thu, Oct 05, 2017 at 03:16:42PM +0530, Srishti Sharma wrote: > This is a cleanup patch and doesn't change runtime behavior. It > changes an open coded list traversal to use list_for_each_entry_safe. > Done using the following semantic patch by coccinelle. You have sent me two different

Re: [PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-18 Thread Greg KH
On Thu, Oct 05, 2017 at 03:16:42PM +0530, Srishti Sharma wrote: > This is a cleanup patch and doesn't change runtime behavior. It > changes an open coded list traversal to use list_for_each_entry_safe. > Done using the following semantic patch by coccinelle. You have sent me two different

[PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-05 Thread Srishti Sharma
This is a cleanup patch and doesn't change runtime behavior. It changes an open coded list traversal to use list_for_each_entry_safe. Done using the following semantic patch by coccinelle. @r@ struct list_head* l; expression e; identifier m, list_del_init, f; type T1; T1* pos; iterator name

[PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-05 Thread Srishti Sharma
This is a cleanup patch and doesn't change runtime behavior. It changes an open coded list traversal to use list_for_each_entry_safe. Done using the following semantic patch by coccinelle. @r@ struct list_head* l; expression e; identifier m, list_del_init, f; type T1; T1* pos; iterator name

[PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-04 Thread Srishti Sharma
This is a cleanup patch and doesn't change runtime behaviour. It changes an open coded list traversal to use list_for_each_entry_safe. Done using the following semantic patch by coccinelle. @r@ struct list_head* l; expression e; identifier m,list_del_init,f; type T1; T1* pos; iterator name

[PATCH v2] Staging: rtl8188eu: core: rtw_ap: Use list_for_each_entry_safe

2017-10-04 Thread Srishti Sharma
This is a cleanup patch and doesn't change runtime behaviour. It changes an open coded list traversal to use list_for_each_entry_safe. Done using the following semantic patch by coccinelle. @r@ struct list_head* l; expression e; identifier m,list_del_init,f; type T1; T1* pos; iterator name