diff for duplicates of <20220715145053.64569-1-alexandr.lobakin@intel.com> diff --git a/a/content_digest b/N1/content_digest index d3fe20b..7d4c1b9 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -26,7 +26,20 @@ Tony Luck <tony.luck@intel.com> Maciej Fijalkowski <maciej.fijalkowski@intel.com> Jesse Brandeburg <jesse.brandeburg@intel.com> - " Greg Kroah-Hartman <gregkh@linuxfoundation.org>\0" + Greg Kroah-Hartman <gregkh@linuxfoundation.org> + Nathan Chancellor <nathan@kernel.org> + Nick Desaulniers <ndesaulniers@google.com> + Tom Rix <trix@redhat.com> + kernel test robot <lkp@intel.com> + linux-alpha@vger.kernel.org + linux-hexagon@vger.kernel.org + linux-ia64@vger.kernel.org + linux-m68k@lists.linux-m68k.org + linux-sh@vger.kernel.org + sparclinux@vger.kernel.org + linux-arch@vger.kernel.org + llvm@lists.linux.dev + " linux-kernel@vger.kernel.org\0" "\00:1\0" "b\0" "From: Yury Norov <yury.norov@gmail.com>\n" @@ -105,4 +118,4 @@ "Thanks,\n" Olek -126466f3d8c53eccc752bed0a39f26f05e304c9a74b1bf2c2c4036f333ef4418 +211e9f667bdb2e5e9f6b0dffa3280bba7cb925b308a2a70cf5f193882d885ed9
diff --git a/a/1.txt b/N2/1.txt index 2c6e521..43d2cac 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -28,7 +28,7 @@ Date: Fri, 15 Jul 2022 07:19:12 -0700 > > > > > > [...] > > > -> > > if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state) +> > > if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = state) > > > > > > doesn't look legit enough. > > > That redundant double-negation [of boolean value], together with @@ -53,8 +53,8 @@ Date: Fri, 15 Jul 2022 07:19:12 -0700 > > > @@ -80,7 +80,7 @@ static void send_ebook_state(void) > > > return; > > > } -> > > - if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state) -> > > + if (test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == !!state) +> > > - if (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = state) +> > > + if (test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = !!state) > > > return; /* Nothing new to report. */ > > > input_report_switch(ebook_switch_idev, SW_TABLET_MODE, state); > > > --- diff --git a/a/content_digest b/N2/content_digest index d3fe20b..8253fe1 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -6,7 +6,7 @@ "ref\0YtF3YIBA0Dd4KXZ+@yury-laptop\0" "From\0Alexander Lobakin <alexandr.lobakin@intel.com>\0" "Subject\0Re: [PATCH v5 6/9] bitops: let optimize out non-atomic bitops on compile-time constants\0" - "Date\0Fri, 15 Jul 2022 16:50:53 +0200\0" + "Date\0Fri, 15 Jul 2022 14:50:53 +0000\0" "To\0Yury Norov <yury.norov@gmail.com>\0" "Cc\0Alexander Lobakin <alexandr.lobakin@intel.com>" Guenter Roeck <linux@roeck-us.net> @@ -26,7 +26,20 @@ Tony Luck <tony.luck@intel.com> Maciej Fijalkowski <maciej.fijalkowski@intel.com> Jesse Brandeburg <jesse.brandeburg@intel.com> - " Greg Kroah-Hartman <gregkh@linuxfoundation.org>\0" + Greg Kroah-Hartman <gregkh@linuxfoundation.org> + Nathan Chancellor <nathan@kernel.org> + Nick Desaulniers <ndesaulniers@google.com> + Tom Rix <trix@redhat.com> + kernel test robot <lkp@intel.com> + linux-alpha@vger.kernel.org + linux-hexagon@vger.kernel.org + linux-ia64@vger.kernel.org + linux-m68k@lists.linux-m68k.org + linux-sh@vger.kernel.org + sparclinux@vger.kernel.org + linux-arch@vger.kernel.org + llvm@lists.linux.dev + " linux-kernel@vger.kernel.org\0" "\00:1\0" "b\0" "From: Yury Norov <yury.norov@gmail.com>\n" @@ -59,7 +72,7 @@ "> > > \n" "> > > \t[...]\n" "> > > \n" - "> > > \tif (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state)\n" + "> > > \tif (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = state)\n" "> > > \n" "> > > doesn't look legit enough.\n" "> > > That redundant double-negation [of boolean value], together with\n" @@ -84,8 +97,8 @@ "> > > @@ -80,7 +80,7 @@ static void send_ebook_state(void)\n" "> > > \t\treturn;\n" "> > > \t}\n" - "> > > -\tif (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == state)\n" - "> > > +\tif (test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) == !!state)\n" + "> > > -\tif (!!test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = state)\n" + "> > > +\tif (test_bit(SW_TABLET_MODE, ebook_switch_idev->sw) = !!state)\n" "> > > \t\treturn; /* Nothing new to report. */\n" "> > > \tinput_report_switch(ebook_switch_idev, SW_TABLET_MODE, state);\n" "> > > ---\n" @@ -105,4 +118,4 @@ "Thanks,\n" Olek -126466f3d8c53eccc752bed0a39f26f05e304c9a74b1bf2c2c4036f333ef4418 +43f1359e0e39dddecdca5d86e914447838c7c56d42224d41819d04b591ba5841
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.