llvm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v11 13/23] cxl: define a driver interface for DPA allocation
       [not found] <20250310210340.3234884-14-alejandro.lucero-palau@amd.com>
@ 2025-03-11 19:12 ` kernel test robot
  2025-03-11 20:17 ` kernel test robot
  1 sibling, 0 replies; 2+ messages in thread
From: kernel test robot @ 2025-03-11 19:12 UTC (permalink / raw)
  To: alejandro.lucero-palau, linux-cxl, netdev, dan.j.williams,
	edward.cree, davem, kuba, pabeni, edumazet, dave.jiang
  Cc: llvm, oe-kbuild-all, Alejandro Lucero

Hi,

kernel test robot noticed the following build errors:

[auto build test ERROR on 0a14566be090ca51a32ebdd8a8e21678062dac08]

url:    https://github.com/intel-lab-lkp/linux/commits/alejandro-lucero-palau-amd-com/cxl-add-type2-device-basic-support/20250311-050914
base:   0a14566be090ca51a32ebdd8a8e21678062dac08
patch link:    https://lore.kernel.org/r/20250310210340.3234884-14-alejandro.lucero-palau%40amd.com
patch subject: [PATCH v11 13/23] cxl: define a driver interface for DPA allocation
config: csky-randconfig-002-20250312 (https://download.01.org/0day-ci/archive/20250312/202503120207.vNlP2uB3-lkp@intel.com/config)
compiler: csky-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250312/202503120207.vNlP2uB3-lkp@intel.com/reproduce)

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>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503120207.vNlP2uB3-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from drivers/cxl/core/hdm.c:6:
>> include/cxl/cxl.h:150:22: error: field 'dpa_range' has incomplete type
     150 |         struct range dpa_range;
         |                      ^~~~~~~~~
>> include/cxl/cxl.h:221:30: error: field 'range' has incomplete type
     221 |                 struct range range;
         |                              ^~~~~


vim +/dpa_range +150 include/cxl/cxl.h

98e0e4ae7d20491 Alejandro Lucero 2025-03-10  141  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  142  /**
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  143   * struct cxl_dpa_perf - DPA performance property entry
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  144   * @dpa_range: range for DPA address
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  145   * @coord: QoS performance data (i.e. latency, bandwidth)
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  146   * @cdat_coord: raw QoS performance data from CDAT
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  147   * @qos_class: QoS Class cookies
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  148   */
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  149  struct cxl_dpa_perf {
98e0e4ae7d20491 Alejandro Lucero 2025-03-10 @150  	struct range dpa_range;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  151  	struct access_coordinate coord[ACCESS_COORDINATE_MAX];
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  152  	struct access_coordinate cdat_coord[ACCESS_COORDINATE_MAX];
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  153  	int qos_class;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  154  };
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  155  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  156  enum cxl_partition_mode {
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  157  	CXL_PARTMODE_RAM,
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  158  	CXL_PARTMODE_PMEM,
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  159  };
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  160  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  161  /**
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  162   * struct cxl_dpa_partition - DPA partition descriptor
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  163   * @res: shortcut to the partition in the DPA resource tree (cxlds->dpa_res)
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  164   * @perf: performance attributes of the partition from CDAT
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  165   * @mode: operation mode for the DPA capacity, e.g. ram, pmem, dynamic...
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  166   */
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  167  struct cxl_dpa_partition {
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  168  	struct resource res;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  169  	struct cxl_dpa_perf perf;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  170  	enum cxl_partition_mode mode;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  171  };
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  172  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  173  #define CXL_NR_PARTITIONS_MAX 2
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  174  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  175  /**
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  176   * struct cxl_dev_state - The driver device state
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  177   *
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  178   * cxl_dev_state represents the CXL driver/device state.  It provides an
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  179   * interface to mailbox commands as well as some cached data about the device.
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  180   * Currently only memory devices are represented.
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  181   *
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  182   * @dev: The device associated with this CXL state
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  183   * @cxlmd: The device representing the CXL.mem capabilities of @dev
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  184   * @reg_map: component and ras register mapping parameters
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  185   * @regs: Parsed register blocks
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  186   * @cxl_dvsec: Offset to the PCIe device DVSEC
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  187   * @rcd: operating in RCD mode (CXL 3.0 9.11.8 CXL Devices Attached to an RCH)
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  188   * @media_ready: Indicate whether the device media is usable
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  189   * @dpa_res: Overall DPA resource tree for the device
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  190   * @part: DPA partition array
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  191   * @nr_partitions: Number of DPA partitions
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  192   * @serial: PCIe Device Serial Number
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  193   * @type: Generic Memory Class device or Vendor Specific Memory device
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  194   * @cxl_mbox: CXL mailbox context
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  195   * @cxlfs: CXL features context
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  196   */
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  197  struct cxl_dev_state {
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  198  	struct device *dev;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  199  	struct cxl_memdev *cxlmd;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  200  	struct cxl_register_map reg_map;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  201  	struct cxl_regs regs;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  202  	int cxl_dvsec;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  203  	bool rcd;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  204  	bool media_ready;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  205  	struct resource dpa_res;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  206  	struct cxl_dpa_partition part[CXL_NR_PARTITIONS_MAX];
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  207  	unsigned int nr_partitions;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  208  	u64 serial;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  209  	enum cxl_devtype type;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  210  	struct cxl_mailbox cxl_mbox;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  211  #ifdef CONFIG_CXL_FEATURES
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  212  	struct cxl_features_state *cxlfs;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  213  #endif
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  214  };
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  215  
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  216  #define CXL_NR_PARTITIONS_MAX 2
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  217  
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  218  struct cxl_dpa_info {
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  219  	u64 size;
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  220  	struct cxl_dpa_part_info {
fe6f26dd4c64059 Alejandro Lucero 2025-03-10 @221  		struct range range;
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  222  		enum cxl_partition_mode mode;
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  223  	} part[CXL_NR_PARTITIONS_MAX];
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  224  	int nr_partitions;
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  225  };
fe6f26dd4c64059 Alejandro Lucero 2025-03-10  226  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v11 13/23] cxl: define a driver interface for DPA allocation
       [not found] <20250310210340.3234884-14-alejandro.lucero-palau@amd.com>
  2025-03-11 19:12 ` [PATCH v11 13/23] cxl: define a driver interface for DPA allocation kernel test robot
@ 2025-03-11 20:17 ` kernel test robot
  1 sibling, 0 replies; 2+ messages in thread
From: kernel test robot @ 2025-03-11 20:17 UTC (permalink / raw)
  To: alejandro.lucero-palau, linux-cxl, netdev, dan.j.williams,
	edward.cree, davem, kuba, pabeni, edumazet, dave.jiang
  Cc: llvm, oe-kbuild-all, Alejandro Lucero

Hi,

kernel test robot noticed the following build errors:

[auto build test ERROR on 0a14566be090ca51a32ebdd8a8e21678062dac08]

url:    https://github.com/intel-lab-lkp/linux/commits/alejandro-lucero-palau-amd-com/cxl-add-type2-device-basic-support/20250311-050914
base:   0a14566be090ca51a32ebdd8a8e21678062dac08
patch link:    https://lore.kernel.org/r/20250310210340.3234884-14-alejandro.lucero-palau%40amd.com
patch subject: [PATCH v11 13/23] cxl: define a driver interface for DPA allocation
config: arm64-randconfig-001-20250312 (https://download.01.org/0day-ci/archive/20250312/202503120331.TSbIvphi-lkp@intel.com/config)
compiler: clang version 21.0.0git (https://github.com/llvm/llvm-project e15545cad8297ec7555f26e5ae74a9f0511203e7)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250312/202503120331.TSbIvphi-lkp@intel.com/reproduce)

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>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503120331.TSbIvphi-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from drivers/cxl/core/hdm.c:6:
>> include/cxl/cxl.h:150:15: error: field has incomplete type 'struct range'
     150 |         struct range dpa_range;
         |                      ^
   include/linux/memory_hotplug.h:247:8: note: forward declaration of 'struct range'
     247 | struct range arch_get_mappable_range(void);
         |        ^
   In file included from drivers/cxl/core/hdm.c:6:
   include/cxl/cxl.h:221:16: error: field has incomplete type 'struct range'
     221 |                 struct range range;
         |                              ^
   include/linux/memory_hotplug.h:247:8: note: forward declaration of 'struct range'
     247 | struct range arch_get_mappable_range(void);
         |        ^
   In file included from drivers/cxl/core/hdm.c:8:
   In file included from drivers/cxl/cxlmem.h:6:
   In file included from include/linux/pci.h:1660:
   In file included from include/linux/dmapool.h:14:
   In file included from include/linux/scatterlist.h:8:
   In file included from include/linux/mm.h:2224:
   include/linux/vmstat.h:504:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
     504 |         return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
         |                            ~~~~~~~~~~~~~~~~~~~~~ ^
     505 |                            item];
         |                            ~~~~
   include/linux/vmstat.h:511:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
     511 |         return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
         |                            ~~~~~~~~~~~~~~~~~~~~~ ^
     512 |                            NR_VM_NUMA_EVENT_ITEMS +
         |                            ~~~~~~~~~~~~~~~~~~~~~~
   include/linux/vmstat.h:524:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
     524 |         return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
         |                            ~~~~~~~~~~~~~~~~~~~~~ ^
     525 |                            NR_VM_NUMA_EVENT_ITEMS +
         |                            ~~~~~~~~~~~~~~~~~~~~~~
   3 warnings and 2 errors generated.


vim +150 include/cxl/cxl.h

98e0e4ae7d20491 Alejandro Lucero 2025-03-10  141  
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  142  /**
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  143   * struct cxl_dpa_perf - DPA performance property entry
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  144   * @dpa_range: range for DPA address
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  145   * @coord: QoS performance data (i.e. latency, bandwidth)
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  146   * @cdat_coord: raw QoS performance data from CDAT
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  147   * @qos_class: QoS Class cookies
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  148   */
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  149  struct cxl_dpa_perf {
98e0e4ae7d20491 Alejandro Lucero 2025-03-10 @150  	struct range dpa_range;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  151  	struct access_coordinate coord[ACCESS_COORDINATE_MAX];
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  152  	struct access_coordinate cdat_coord[ACCESS_COORDINATE_MAX];
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  153  	int qos_class;
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  154  };
98e0e4ae7d20491 Alejandro Lucero 2025-03-10  155  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-03-11 20:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20250310210340.3234884-14-alejandro.lucero-palau@amd.com>
2025-03-11 19:12 ` [PATCH v11 13/23] cxl: define a driver interface for DPA allocation kernel test robot
2025-03-11 20:17 ` kernel test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).