lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 20 Mar 2014 20:07:10 +0530
From:	Monam Agarwal <monamagarwal123@...il.com>
To:	netdev@...r.kernel.org
Cc:	linux-kernel@...r.kernel.org, eddie.wai@...adcom.com,
	paulmck@...ux.vnet.ibm.com
Subject: [PATCH 0/9] Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,NULL)

This patchset uses following coccinelle script to replace
rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,NULL)

@@
expression E;
@@
- rcu_assign_pointer(
+ RCU_INIT_POINTER(
E, NULL)

Monam Agarwal (9):
  net/ethernet: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/net/ethernet/broadcom/bnx2.c
  net/ethernet: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c
  net: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/net/macvtap.c
  net: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/net/ppp/pptp.c
  net/wireless: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/net/wireless/ath/carl9170/main.c
  scsi: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,
    NULL) in drivers/scsi/libfc/fc_libfc.c
  target: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x, 
       NULL) in drivers/target/tcm_fc/tfc_sess.c
  vhost: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,  
      NULL) in drivers/vhost/net.c
  vhost: Replace rcu_assign_pointer(x, NULL) with RCU_INIT_POINTER(x,  
      NULL) in drivers/vhost/test.c

 drivers/net/ethernet/broadcom/bnx2.c               |    2 +-
 drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c |    4 ++--
 drivers/net/macvtap.c                              |    8 ++++----
 drivers/net/ppp/pptp.c                             |    2 +-
 drivers/net/wireless/ath/carl9170/main.c           |   12 ++++++------
 drivers/scsi/libfc/fc_libfc.c                      |    4 ++--
 drivers/target/tcm_fc/tfc_sess.c                   |    2 +-
 drivers/vhost/net.c                                |    2 +-
 drivers/vhost/test.c                               |    2 +-
 9 files changed, 19 insertions(+), 19 deletions(-)

-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists