All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <202512251923.GDSbVal1-lkp@intel.com>

diff --git a/a/1.txt b/N1/1.txt
index 362f1de..5562df4 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,18 +1,45 @@
+BCC: lkp@intel.com
+CC: oe-kbuild-all@lists.linux.dev
+In-Reply-To: <20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4@oss.qualcomm.com>
+References: <20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4@oss.qualcomm.com>
+TO: Jie Gan <jie.gan@oss.qualcomm.com>
+TO: Suzuki K Poulose <suzuki.poulose@arm.com>
+TO: Mike Leach <mike.leach@linaro.org>
+TO: James Clark <james.clark@linaro.org>
+TO: Alexander Shishkin <alexander.shishkin@linux.intel.com>
+TO: Rob Herring <robh@kernel.org>
+TO: Krzysztof Kozlowski <krzk@kernel.org>
+TO: Conor Dooley <conor+dt@kernel.org>
+TO: Tingwei Zhang <tingwei.zhang@oss.qualcomm.com>
+TO: Mao Jinlong <jinlong.mao@oss.qualcomm.com>
+TO: Bjorn Andersson <andersson@kernel.org>
+TO: Konrad Dybcio <konradybcio@kernel.org>
+CC: coresight@lists.linaro.org
+CC: linux-arm-kernel@lists.infradead.org
+CC: linux-kernel@vger.kernel.org
+CC: linux-arm-msm@vger.kernel.org
+CC: devicetree@vger.kernel.org
+CC: Jie Gan <jie.gan@oss.qualcomm.com>
+
 Hi Jie,
 
 kernel test robot noticed the following build warnings:
 
+[auto build test WARNING on 47b7b5e32bb7264b51b89186043e1ada4090b558]
+
 url:    https://github.com/intel-lab-lkp/linux/commits/Jie-Gan/coresight-core-Refactoring-ctcu_get_active_port-and-make-it-generic/20251224-171604
 base:   47b7b5e32bb7264b51b89186043e1ada4090b558
 patch link:    https://lore.kernel.org/r/20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4%40oss.qualcomm.com
 patch subject: [PATCH v9 2/8] coresight: tmc: add create/clean functions for etr_buf_list
+:::::: branch date: 27 hours ago
+:::::: commit date: 27 hours ago
 config: arm-randconfig-r073-20251225 (https://download.01.org/0day-ci/archive/20251225/202512251923.GDSbVal1-lkp@intel.com/config)
 compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 4ef602d446057dabf5f61fb221669ecbeda49279)
 
 If you fix the issue in a separate patch/commit (i.e. not just a new version of
 the same patch/commit), kindly add following tags
 | Reported-by: kernel test robot <lkp@intel.com>
-| Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
+| Reported-by: Dan Carpenter <error27@gmail.com>
 | Closes: https://lore.kernel.org/r/202512251923.GDSbVal1-lkp@intel.com/
 
 smatch warnings:
@@ -21,6 +48,14 @@ drivers/hwtracing/coresight/coresight-tmc-etr.c:1992 tmc_create_etr_buf_list() w
 
 vim +/new_node +1992 drivers/hwtracing/coresight/coresight-tmc-etr.c
 
+34af91eeb7e78e Jie Gan 2025-12-24  1951  
+34af91eeb7e78e Jie Gan 2025-12-24  1952  /**
+34af91eeb7e78e Jie Gan 2025-12-24  1953   * tmc_create_etr_buf_list - create a list to manage the etr_buf_node.
+34af91eeb7e78e Jie Gan 2025-12-24  1954   * @drvdata:	driver data of the TMC device.
+34af91eeb7e78e Jie Gan 2025-12-24  1955   * @num_nodes:	number of nodes want to create with the list.
+34af91eeb7e78e Jie Gan 2025-12-24  1956   *
+34af91eeb7e78e Jie Gan 2025-12-24  1957   * Return 0 upon success and return the error number if fail.
+34af91eeb7e78e Jie Gan 2025-12-24  1958   */
 34af91eeb7e78e Jie Gan 2025-12-24  1959  int tmc_create_etr_buf_list(struct tmc_drvdata *drvdata, int num_nodes)
 34af91eeb7e78e Jie Gan 2025-12-24  1960  {
 34af91eeb7e78e Jie Gan 2025-12-24  1961  	struct etr_buf_node *new_node;
@@ -55,9 +90,6 @@ vim +/new_node +1992 drivers/hwtracing/coresight/coresight-tmc-etr.c
 34af91eeb7e78e Jie Gan 2025-12-24  1990  		if (IS_ERR(sysfs_buf)) {
 34af91eeb7e78e Jie Gan 2025-12-24 @1991  			kfree(new_node);
 34af91eeb7e78e Jie Gan 2025-12-24 @1992  			ret = PTR_ERR(new_node);
-
-s/new_node/sysfs_buf/
-
 34af91eeb7e78e Jie Gan 2025-12-24  1993  			break;
 34af91eeb7e78e Jie Gan 2025-12-24  1994  		}
 34af91eeb7e78e Jie Gan 2025-12-24  1995  
@@ -79,6 +111,8 @@ s/new_node/sysfs_buf/
 34af91eeb7e78e Jie Gan 2025-12-24  2011  
 34af91eeb7e78e Jie Gan 2025-12-24  2012  	return ret;
 34af91eeb7e78e Jie Gan 2025-12-24  2013  }
+34af91eeb7e78e Jie Gan 2025-12-24  2014  EXPORT_SYMBOL_GPL(tmc_create_etr_buf_list);
+34af91eeb7e78e Jie Gan 2025-12-24  2015  
 
 -- 
 0-DAY CI Kernel Test Service
diff --git a/a/content_digest b/N1/content_digest
index 8da14a3..69c5183 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,45 +1,53 @@
- "ref\020251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4@oss.qualcomm.com\0"
- "From\0Dan Carpenter <dan.carpenter@linaro.org>\0"
+ "From\0kernel test robot <lkp@intel.com>\0"
  "Subject\0Re: [PATCH v9 2/8] coresight: tmc: add create/clean functions for etr_buf_list\0"
- "Date\0Fri, 26 Dec 2025 16:17:14 +0300\0"
- "To\0oe-kbuild@lists.linux.dev"
-  Jie Gan <jie.gan@oss.qualcomm.com>
-  Suzuki K Poulose <suzuki.poulose@arm.com>
-  Mike Leach <mike.leach@linaro.org>
-  James Clark <james.clark@linaro.org>
-  Alexander Shishkin <alexander.shishkin@linux.intel.com>
-  Rob Herring <robh@kernel.org>
-  Krzysztof Kozlowski <krzk@kernel.org>
-  Conor Dooley <conor+dt@kernel.org>
-  Tingwei Zhang <tingwei.zhang@oss.qualcomm.com>
-  Mao Jinlong <jinlong.mao@oss.qualcomm.com>
-  Bjorn Andersson <andersson@kernel.org>
- " Konrad Dybcio <konradybcio@kernel.org>\0"
+ "Date\0Thu, 25 Dec 2025 20:00:11 +0800\0"
+ "To\0oe-kbuild@lists.linux.dev\0"
  "Cc\0lkp@intel.com"
-  oe-kbuild-all@lists.linux.dev
-  coresight@lists.linaro.org
-  linux-arm-kernel@lists.infradead.org
-  linux-kernel@vger.kernel.org
-  linux-arm-msm@vger.kernel.org
-  devicetree@vger.kernel.org
- " Jie Gan <jie.gan@oss.qualcomm.com>\0"
+ " Dan Carpenter <error27@gmail.com>\0"
  "\00:1\0"
  "b\0"
+ "BCC: lkp@intel.com\n"
+ "CC: oe-kbuild-all@lists.linux.dev\n"
+ "In-Reply-To: <20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4@oss.qualcomm.com>\n"
+ "References: <20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4@oss.qualcomm.com>\n"
+ "TO: Jie Gan <jie.gan@oss.qualcomm.com>\n"
+ "TO: Suzuki K Poulose <suzuki.poulose@arm.com>\n"
+ "TO: Mike Leach <mike.leach@linaro.org>\n"
+ "TO: James Clark <james.clark@linaro.org>\n"
+ "TO: Alexander Shishkin <alexander.shishkin@linux.intel.com>\n"
+ "TO: Rob Herring <robh@kernel.org>\n"
+ "TO: Krzysztof Kozlowski <krzk@kernel.org>\n"
+ "TO: Conor Dooley <conor+dt@kernel.org>\n"
+ "TO: Tingwei Zhang <tingwei.zhang@oss.qualcomm.com>\n"
+ "TO: Mao Jinlong <jinlong.mao@oss.qualcomm.com>\n"
+ "TO: Bjorn Andersson <andersson@kernel.org>\n"
+ "TO: Konrad Dybcio <konradybcio@kernel.org>\n"
+ "CC: coresight@lists.linaro.org\n"
+ "CC: linux-arm-kernel@lists.infradead.org\n"
+ "CC: linux-kernel@vger.kernel.org\n"
+ "CC: linux-arm-msm@vger.kernel.org\n"
+ "CC: devicetree@vger.kernel.org\n"
+ "CC: Jie Gan <jie.gan@oss.qualcomm.com>\n"
+ "\n"
  "Hi Jie,\n"
  "\n"
  "kernel test robot noticed the following build warnings:\n"
  "\n"
+ "[auto build test WARNING on 47b7b5e32bb7264b51b89186043e1ada4090b558]\n"
+ "\n"
  "url:    https://github.com/intel-lab-lkp/linux/commits/Jie-Gan/coresight-core-Refactoring-ctcu_get_active_port-and-make-it-generic/20251224-171604\n"
  "base:   47b7b5e32bb7264b51b89186043e1ada4090b558\n"
  "patch link:    https://lore.kernel.org/r/20251224-enable-byte-cntr-for-ctcu-v9-2-886c4496fed4%40oss.qualcomm.com\n"
  "patch subject: [PATCH v9 2/8] coresight: tmc: add create/clean functions for etr_buf_list\n"
+ ":::::: branch date: 27 hours ago\n"
+ ":::::: commit date: 27 hours ago\n"
  "config: arm-randconfig-r073-20251225 (https://download.01.org/0day-ci/archive/20251225/202512251923.GDSbVal1-lkp@intel.com/config)\n"
  "compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 4ef602d446057dabf5f61fb221669ecbeda49279)\n"
  "\n"
  "If you fix the issue in a separate patch/commit (i.e. not just a new version of\n"
  "the same patch/commit), kindly add following tags\n"
  "| Reported-by: kernel test robot <lkp@intel.com>\n"
- "| Reported-by: Dan Carpenter <dan.carpenter@linaro.org>\n"
+ "| Reported-by: Dan Carpenter <error27@gmail.com>\n"
  "| Closes: https://lore.kernel.org/r/202512251923.GDSbVal1-lkp@intel.com/\n"
  "\n"
  "smatch warnings:\n"
@@ -48,6 +56,14 @@
  "\n"
  "vim +/new_node +1992 drivers/hwtracing/coresight/coresight-tmc-etr.c\n"
  "\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1951  \n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1952  /**\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1953   * tmc_create_etr_buf_list - create a list to manage the etr_buf_node.\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1954   * @drvdata:\tdriver data of the TMC device.\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1955   * @num_nodes:\tnumber of nodes want to create with the list.\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1956   *\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1957   * Return 0 upon success and return the error number if fail.\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  1958   */\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1959  int tmc_create_etr_buf_list(struct tmc_drvdata *drvdata, int num_nodes)\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1960  {\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1961  \tstruct etr_buf_node *new_node;\n"
@@ -82,9 +98,6 @@
  "34af91eeb7e78e Jie Gan 2025-12-24  1990  \t\tif (IS_ERR(sysfs_buf)) {\n"
  "34af91eeb7e78e Jie Gan 2025-12-24 @1991  \t\t\tkfree(new_node);\n"
  "34af91eeb7e78e Jie Gan 2025-12-24 @1992  \t\t\tret = PTR_ERR(new_node);\n"
- "\n"
- "s/new_node/sysfs_buf/\n"
- "\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1993  \t\t\tbreak;\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1994  \t\t}\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  1995  \n"
@@ -106,9 +119,11 @@
  "34af91eeb7e78e Jie Gan 2025-12-24  2011  \n"
  "34af91eeb7e78e Jie Gan 2025-12-24  2012  \treturn ret;\n"
  "34af91eeb7e78e Jie Gan 2025-12-24  2013  }\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  2014  EXPORT_SYMBOL_GPL(tmc_create_etr_buf_list);\n"
+ "34af91eeb7e78e Jie Gan 2025-12-24  2015  \n"
  "\n"
  "-- \n"
  "0-DAY CI Kernel Test Service\n"
  https://github.com/intel/lkp-tests/wiki
 
-ab6f5f1fc3fd73843ad61c7d7cc1a60ef1b68e9b1695390a3006c36adf5b9351
+69ab5740270fbb58499b5c6480b6b742bd02f303cc7955799dc69224638c6fcf

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.