Hi Paul, kernel test robot noticed the following build errors: [auto build test ERROR on song-md/md-next] [also build test ERROR on linus/master v6.12-rc1 next-20241004] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Paul-Luse/md-yet-another-CI-email-test-do-not-review/20241004-020247 base: https://git.kernel.org/pub/scm/linux/kernel/git/song/md.git md-next patch link: https://lore.kernel.org/r/20241003180040.6808-1-paulluselinux%40gmail.com patch subject: [PATCH] md: yet another CI email test - do not review config: parisc-defconfig (https://download.01.org/0day-ci/archive/20241005/202410050528.RsgauQz4-lkp@xxxxxxxxx/config) compiler: hppa-linux-gcc (GCC) 14.1.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241005/202410050528.RsgauQz4-lkp@xxxxxxxxx/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@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202410050528.RsgauQz4-lkp@xxxxxxxxx/ All errors (new ones prefixed by >>): drivers/md/raid1.c: In function 'check_and_add_serial': >> drivers/md/raid1.c:68:9: error: 'xxx' undeclared (first use in this function) 68 | xxx | ^~~ drivers/md/raid1.c:68:9: note: each undeclared identifier is reported only once for each function it appears in >> drivers/md/raid1.c:68:12: error: expected ';' before 'do' 68 | xxx | ^ | ; vim +/xxx +68 drivers/md/raid1.c 54 55 #define START(node) ((node)->start) 56 #define LAST(node) ((node)->last) 57 INTERVAL_TREE_DEFINE(struct serial_info, node, sector_t, _subtree_last, 58 START, LAST, static inline, raid1_rb); 59 60 static int check_and_add_serial(struct md_rdev *rdev, struct r1bio *r1_bio, 61 struct serial_info *si, int idx) 62 { 63 unsigned long flags; 64 int ret = 0; 65 sector_t lo = r1_bio->sector; 66 sector_t hi = lo + r1_bio->sectors; 67 struct serial_in_rdev *serial = &rdev->serial[idx]; > 68 xxx 69 spin_lock_irqsave(&serial->serial_lock, flags); 70 /* collision happened */ 71 if (raid1_rb_iter_first(&serial->serial_rb, lo, hi)) 72 ret = -EBUSY; 73 else { 74 si->start = lo; 75 si->last = hi; 76 raid1_rb_insert(si, &serial->serial_rb); 77 } 78 spin_unlock_irqrestore(&serial->serial_lock, flags); 79 80 return ret; 81 } 82 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki