diff for duplicates of <1492802882.30293.34.camel@perches.com> diff --git a/a/1.txt b/N1/1.txt index 0a17107..2a23882 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -13,7 +13,7 @@ On Fri, 2017-04-21 at 20:54 +0200, SF Markus Elfring wrote: > > - ether_type = (!is_udp) ? ETH_P_IBOE: > + ether_type = (!is_udp) ? ETH_P_IBOE : -> (ip_version = 4 ? ETH_P_IP : ETH_P_IPV6); +> (ip_version == 4 ? ETH_P_IP : ETH_P_IPV6); Please refrain from tool generated mechanical changes. @@ -27,5 +27,5 @@ don't use parentheses at all. Maybe even align the ETH_P_ uses like: ether_type = !is_udp ? ETH_P_IBOE : - ip_version = 4 ? ETH_P_IP : + ip_version == 4 ? ETH_P_IP : ETH_P_IPV6; diff --git a/a/content_digest b/N1/content_digest index c9d9f34..84330c0 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -4,7 +4,7 @@ "ref\0d7f1064f-a70e-83c4-bf45-0467ffba954f@users.sourceforge.net\0" "From\0Joe Perches <joe@perches.com>\0" "Subject\0Re: [PATCH v2 16/17] IB/mlx4: Add spaces for better code readability\0" - "Date\0Fri, 21 Apr 2017 19:28:02 +0000\0" + "Date\0Fri, 21 Apr 2017 12:28:02 -0700\0" "To\0SF Markus Elfring <elfring@users.sourceforge.net>" Doug Ledford <dledford@redhat.com> Hal Rosenstock <hal.rosenstock@gmail.com> @@ -34,7 +34,7 @@ "> \n" "> -\t\tether_type = (!is_udp) ? ETH_P_IBOE:\n" "> +\t\tether_type = (!is_udp) ? ETH_P_IBOE :\n" - "> \t\t\t(ip_version = 4 ? ETH_P_IP : ETH_P_IPV6);\n" + "> \t\t\t(ip_version == 4 ? ETH_P_IP : ETH_P_IPV6);\n" "\n" "Please refrain from tool generated mechanical changes.\n" "\n" @@ -48,7 +48,7 @@ "Maybe even align the ETH_P_ uses like:\n" "\n" "\t\tether_type = !is_udp\t\t? ETH_P_IBOE :\n" - "\t\t\t ip_version = 4\t? ETH_P_IP :\n" + "\t\t\t ip_version == 4\t? ETH_P_IP :\n" "\t\t\t\t\t\t ETH_P_IPV6;" -f36c3662b6ebe07528d68d2e10e13a895527a8f5722bd56b3290bd969b4bae75 +4e675647b3420beb12d587a39ffe5b12898a81214f9f3886828908a7b02f4522
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.