diff for duplicates of <20200117133854.32550-3-frextrite@gmail.com> diff --git a/a/1.txt b/N1/1.txt index c8f7f49..4be8b9f 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -57,8 +57,3 @@ index 4fd6a1de947c..bb70f61237a6 100644 } -- 2.24.1 - -_______________________________________________ -Linux-kernel-mentees mailing list -Linux-kernel-mentees@lists.linuxfoundation.org -https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees diff --git a/a/content_digest b/N1/content_digest index a98b78e..2518c5c 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,14 +1,16 @@ "ref\020200117133854.32550-1-frextrite@gmail.com\0" "From\0Amol Grover <frextrite@gmail.com>\0" - "Subject\0[Linux-kernel-mentees] [PATCH v3 3/3] drivers: target: tcm_fc: tfc_sess: Pass lockdep expression to RCU lists\0" + "Subject\0[PATCH v3 3/3] drivers: target: tcm_fc: tfc_sess: Pass lockdep expression to RCU lists\0" "Date\0Fri, 17 Jan 2020 19:08:57 +0530\0" "To\0Martin K. Petersen <martin.petersen@oracle.com>\0" - "Cc\0Paul E . McKenney <paulmck@kernel.org>" - linux-scsi@vger.kernel.org - linux-kernel@vger.kernel.org + "Cc\0linux-scsi@vger.kernel.org" target-devel@vger.kernel.org + linux-kernel@vger.kernel.org + linux-kernel-mentees@lists.linuxfoundation.org Joel Fernandes <joel@joelfernandes.org> - " linux-kernel-mentees@lists.linuxfoundation.org\0" + Madhuparna Bhowmik <madhuparnabhowmik04@gmail.com> + Paul E . McKenney <paulmck@kernel.org> + " Amol Grover <frextrite@gmail.com>\0" "\00:1\0" "b\0" "head is traversed with hlist_for_each_entry_rcu\n" @@ -69,11 +71,6 @@ " \t\t\tft_close_sess(sess);\t/* release from table */\n" " \t\t}\n" "-- \n" - "2.24.1\n" - "\n" - "_______________________________________________\n" - "Linux-kernel-mentees mailing list\n" - "Linux-kernel-mentees@lists.linuxfoundation.org\n" - https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees + 2.24.1 -39e5633e68c5fefad5d4d7196de54dc687c20d7aa8f29e37e6ffe0d66e80a4f4 +87bf7bf51687046e71aa293df3d048d98a0f5fa0612b50bf21fd8c2ad251f6a5
diff --git a/a/1.txt b/N2/1.txt index c8f7f49..fcabea2 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -22,7 +22,7 @@ index 4fd6a1de947c..bb70f61237a6 100644 - hlist_for_each_entry_rcu(sess, head, hash) { + hlist_for_each_entry_rcu(sess, head, hash, + lockdep_is_held(&ft_lport_lock)) { - if (sess->port_id == port_id) { + if (sess->port_id = port_id) { kref_get(&sess->kref); rcu_read_unlock(); @@ -215,7 +216,8 @@ static struct ft_sess *ft_sess_create(struct ft_tport *tport, u32 port_id, @@ -32,7 +32,7 @@ index 4fd6a1de947c..bb70f61237a6 100644 - hlist_for_each_entry_rcu(sess, head, hash) + hlist_for_each_entry_rcu(sess, head, hash, + lockdep_is_held(&ft_lport_lock)) - if (sess->port_id == port_id) + if (sess->port_id = port_id) return sess; @@ -264,7 +266,8 @@ static struct ft_sess *ft_sess_delete(struct ft_tport *tport, u32 port_id) @@ -42,7 +42,7 @@ index 4fd6a1de947c..bb70f61237a6 100644 - hlist_for_each_entry_rcu(sess, head, hash) { + hlist_for_each_entry_rcu(sess, head, hash, + lockdep_is_held(&ft_lport_lock)) { - if (sess->port_id == port_id) { + if (sess->port_id = port_id) { ft_sess_unhash(sess); return sess; @@ -291,7 +294,8 @@ static void ft_sess_delete_all(struct ft_tport *tport) @@ -57,8 +57,3 @@ index 4fd6a1de947c..bb70f61237a6 100644 } -- 2.24.1 - -_______________________________________________ -Linux-kernel-mentees mailing list -Linux-kernel-mentees@lists.linuxfoundation.org -https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees diff --git a/a/content_digest b/N2/content_digest index a98b78e..88a607a 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,7 +1,7 @@ "ref\020200117133854.32550-1-frextrite@gmail.com\0" "From\0Amol Grover <frextrite@gmail.com>\0" - "Subject\0[Linux-kernel-mentees] [PATCH v3 3/3] drivers: target: tcm_fc: tfc_sess: Pass lockdep expression to RCU lists\0" - "Date\0Fri, 17 Jan 2020 19:08:57 +0530\0" + "Subject\0[PATCH v3 3/3] drivers: target: tcm_fc: tfc_sess: Pass lockdep expression to RCU lists\0" + "Date\0Fri, 17 Jan 2020 13:50:57 +0000\0" "To\0Martin K. Petersen <martin.petersen@oracle.com>\0" "Cc\0Paul E . McKenney <paulmck@kernel.org>" linux-scsi@vger.kernel.org @@ -35,7 +35,7 @@ "-\thlist_for_each_entry_rcu(sess, head, hash) {\n" "+\thlist_for_each_entry_rcu(sess, head, hash,\n" "+\t\t\t\t lockdep_is_held(&ft_lport_lock)) {\n" - " \t\tif (sess->port_id == port_id) {\n" + " \t\tif (sess->port_id = port_id) {\n" " \t\t\tkref_get(&sess->kref);\n" " \t\t\trcu_read_unlock();\n" "@@ -215,7 +216,8 @@ static struct ft_sess *ft_sess_create(struct ft_tport *tport, u32 port_id,\n" @@ -45,7 +45,7 @@ "-\thlist_for_each_entry_rcu(sess, head, hash)\n" "+\thlist_for_each_entry_rcu(sess, head, hash,\n" "+\t\t\t\t lockdep_is_held(&ft_lport_lock))\n" - " \t\tif (sess->port_id == port_id)\n" + " \t\tif (sess->port_id = port_id)\n" " \t\t\treturn sess;\n" " \n" "@@ -264,7 +266,8 @@ static struct ft_sess *ft_sess_delete(struct ft_tport *tport, u32 port_id)\n" @@ -55,7 +55,7 @@ "-\thlist_for_each_entry_rcu(sess, head, hash) {\n" "+\thlist_for_each_entry_rcu(sess, head, hash,\n" "+\t\t\t\t lockdep_is_held(&ft_lport_lock)) {\n" - " \t\tif (sess->port_id == port_id) {\n" + " \t\tif (sess->port_id = port_id) {\n" " \t\t\tft_sess_unhash(sess);\n" " \t\t\treturn sess;\n" "@@ -291,7 +294,8 @@ static void ft_sess_delete_all(struct ft_tport *tport)\n" @@ -69,11 +69,6 @@ " \t\t\tft_close_sess(sess);\t/* release from table */\n" " \t\t}\n" "-- \n" - "2.24.1\n" - "\n" - "_______________________________________________\n" - "Linux-kernel-mentees mailing list\n" - "Linux-kernel-mentees@lists.linuxfoundation.org\n" - https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees + 2.24.1 -39e5633e68c5fefad5d4d7196de54dc687c20d7aa8f29e37e6ffe0d66e80a4f4 +3a6bd1af5f79daa60e440523e8d623f2a09d528e3fe0a46917ac5a0ca2e08edc
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.