[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191217.221846.1864258542284733289.davem@davemloft.net>
Date: Tue, 17 Dec 2019 22:18:46 -0800 (PST)
From: David Miller <davem@...emloft.net>
To: alexchan@...k.com.hk
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] llc2: Remove the condition operator in
llc_stat_ev_rx_null_dsap_xid_c and llc_stat_ev_rx_null_dsap_test_c.
From: "Chan Shu Tak, Alex" <alexchan@...k.com.hk>
Date: Tue, 17 Dec 2019 12:00:36 +0800
> @@ -32,7 +32,7 @@ static int llc_stat_ev_rx_null_dsap_xid_c(struct sk_buff *skb)
> return LLC_PDU_IS_CMD(pdu) && /* command PDU */
> LLC_PDU_TYPE_IS_U(pdu) && /* U type PDU */
> LLC_U_PDU_CMD(pdu) == LLC_1_PDU_CMD_XID &&
> - !pdu->dsap ? 1 : 0; /* NULL DSAP value */
> + !pdu->dsap; /* NULL DSAP value */
This isn't a v2 of your patch, it's a patch against v1 of your patch.
Please do this properly, thank you.
Powered by blists - more mailing lists