linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: bluez.test.bot@gmail.com
To: linux-bluetooth@vger.kernel.org, mcchou@chromium.org
Subject: RE: Detailed error code
Date: Thu, 17 Jun 2021 18:30:37 -0700 (PDT)	[thread overview]
Message-ID: <60cbf73d.1c69fb81.46f44.1bd7@mx.google.com> (raw)
In-Reply-To: <20210617170013.BlueZ.v1.1.If79c3f0720cc893be1770c6853fe2fbe626f2caa@changeid>

[-- Attachment #1: Type: text/plain, Size: 22620 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=502869

---Test result---

Test Summary:
CheckPatch                    FAIL      1.22 seconds
GitLint                       PASS      0.42 seconds
Prep - Setup ELL              PASS      49.88 seconds
Build - Prep                  PASS      0.17 seconds
Build - Configure             PASS      9.15 seconds
Build - Make                  FAIL      190.37 seconds
Make Check                    FAIL      0.62 seconds
Make Distcheck                FAIL      174.13 seconds
Build w/ext ELL - Configure   PASS      8.79 seconds
Build w/ext ELL - Make        FAIL      174.89 seconds

Details
##############################
Test: CheckPatch - FAIL
Desc: Run checkpatch.pl script with rule in .checkpatch.conf
Output:
error: BR/EDR and LE connection failure reasons
WARNING:PREFER_FALLTHROUGH: Prefer 'fallthrough;' over fallthrough comment
#105: FILE: src/error.c:165:
+	case EISCONN: // Fall through

WARNING:PREFER_FALLTHROUGH: Prefer 'fallthrough;' over fallthrough comment
#118: FILE: src/error.c:178:
+	case EPROTONOSUPPORT: // Fall through

WARNING:PREFER_FALLTHROUGH: Prefer 'fallthrough;' over fallthrough comment
#151: FILE: src/error.c:211:
+	case EPROTONOSUPPORT: // Fall through

WARNING:PREFER_FALLTHROUGH: Prefer 'fallthrough;' over fallthrough comment
#154: FILE: src/error.c:214:
+	case EISCONN: // Fall through

- total: 0 errors, 4 warnings, 349 lines checked

NOTE: For some of the reported defects, checkpatch may be able to
      mechanically convert to the typical style using --fix or --fix-inplace.

"[PATCH] error: BR/EDR and LE connection failure reasons" has style problems, please review.

NOTE: Ignored message types: COMMIT_MESSAGE COMPLEX_MACRO CONST_STRUCT FILE_PATH_CHANGES MISSING_SIGN_OFF PREFER_PACKED SPDX_LICENSE_TAG SPLIT_STRING SSCANF_TO_KSTRTO

NOTE: If any of the errors are false positives, please report
      them to the maintainer, see CHECKPATCH in MAINTAINERS.


##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint

##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL

##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build

##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree

##############################
Test: Build - Make - FAIL
Desc: Build the BlueZ source tree
Output:
src/error.c: In function ‘btd_error_bredr_conn_from_errno’:
src/error.c:164:7: error: ‘EALREADY’ undeclared (first use in this function)
  164 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:164:7: note: each undeclared identifier is reported only once for each function it appears in
src/error.c:165:7: error: ‘EISCONN’ undeclared (first use in this function)
  165 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:167:7: error: ‘EHOSTDOWN’ undeclared (first use in this function)
  167 |  case EHOSTDOWN:
      |       ^~~~~~~~~
src/error.c:169:7: error: ‘ENOPROTOOPT’ undeclared (first use in this function)
  169 |  case ENOPROTOOPT:
      |       ^~~~~~~~~~~
src/error.c:171:7: error: ‘EIO’ undeclared (first use in this function)
  171 |  case EIO:
      |       ^~~
src/error.c:173:7: error: ‘EINVAL’ undeclared (first use in this function)
  173 |  case EINVAL:
      |       ^~~~~~
src/error.c:175:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  175 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:177:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  177 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:178:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  178 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:180:7: error: ‘EBADFD’ undeclared (first use in this function)
  180 |  case EBADFD:
      |       ^~~~~~
src/error.c:182:7: error: ‘ENOMEM’ undeclared (first use in this function)
  182 |  case ENOMEM:
      |       ^~~~~~
src/error.c:184:7: error: ‘EBUSY’ undeclared (first use in this function)
  184 |  case EBUSY:
      |       ^~~~~
src/error.c:186:7: error: ‘EMLINK’ undeclared (first use in this function)
  186 |  case EMLINK:
      |       ^~~~~~
src/error.c:188:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  188 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:190:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  190 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:192:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  192 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:194:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  194 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:196:7: error: ‘EPROTO’ undeclared (first use in this function)
  196 |  case EPROTO:
      |       ^~~~~~
src/error.c: In function ‘btd_error_le_conn_from_errno’:
src/error.c:206:7: error: ‘EINVAL’ undeclared (first use in this function)
  206 |  case EINVAL:
      |       ^~~~~~
src/error.c:208:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  208 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:210:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  210 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:211:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  211 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:213:7: error: ‘EALREADY’ undeclared (first use in this function)
  213 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:214:7: error: ‘EISCONN’ undeclared (first use in this function)
  214 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:216:7: error: ‘EBADFD’ undeclared (first use in this function)
  216 |  case EBADFD:
      |       ^~~~~~
src/error.c:218:7: error: ‘ENOMEM’ undeclared (first use in this function)
  218 |  case ENOMEM:
      |       ^~~~~~
src/error.c:220:7: error: ‘EBUSY’ undeclared (first use in this function)
  220 |  case EBUSY:
      |       ^~~~~
src/error.c:222:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  222 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:224:7: error: ‘EIO’ undeclared (first use in this function)
  224 |  case EIO:
      |       ^~~
src/error.c:226:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  226 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:228:7: error: ‘EMLINK’ undeclared (first use in this function)
  228 |  case EMLINK:
      |       ^~~~~~
src/error.c:230:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  230 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:232:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  232 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:234:7: error: ‘EPROTO’ undeclared (first use in this function)
  234 |  case EPROTO:
      |       ^~~~~~
make[1]: *** [Makefile:9301: src/bluetoothd-error.o] Error 1
make: *** [Makefile:4134: all] Error 2


##############################
Test: Make Check - FAIL
Desc: Run 'make check'
Output:
src/error.c: In function ‘btd_error_bredr_conn_from_errno’:
src/error.c:164:7: error: ‘EALREADY’ undeclared (first use in this function)
  164 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:164:7: note: each undeclared identifier is reported only once for each function it appears in
src/error.c:165:7: error: ‘EISCONN’ undeclared (first use in this function)
  165 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:167:7: error: ‘EHOSTDOWN’ undeclared (first use in this function)
  167 |  case EHOSTDOWN:
      |       ^~~~~~~~~
src/error.c:169:7: error: ‘ENOPROTOOPT’ undeclared (first use in this function)
  169 |  case ENOPROTOOPT:
      |       ^~~~~~~~~~~
src/error.c:171:7: error: ‘EIO’ undeclared (first use in this function)
  171 |  case EIO:
      |       ^~~
src/error.c:173:7: error: ‘EINVAL’ undeclared (first use in this function)
  173 |  case EINVAL:
      |       ^~~~~~
src/error.c:175:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  175 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:177:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  177 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:178:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  178 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:180:7: error: ‘EBADFD’ undeclared (first use in this function)
  180 |  case EBADFD:
      |       ^~~~~~
src/error.c:182:7: error: ‘ENOMEM’ undeclared (first use in this function)
  182 |  case ENOMEM:
      |       ^~~~~~
src/error.c:184:7: error: ‘EBUSY’ undeclared (first use in this function)
  184 |  case EBUSY:
      |       ^~~~~
src/error.c:186:7: error: ‘EMLINK’ undeclared (first use in this function)
  186 |  case EMLINK:
      |       ^~~~~~
src/error.c:188:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  188 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:190:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  190 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:192:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  192 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:194:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  194 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:196:7: error: ‘EPROTO’ undeclared (first use in this function)
  196 |  case EPROTO:
      |       ^~~~~~
src/error.c: In function ‘btd_error_le_conn_from_errno’:
src/error.c:206:7: error: ‘EINVAL’ undeclared (first use in this function)
  206 |  case EINVAL:
      |       ^~~~~~
src/error.c:208:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  208 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:210:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  210 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:211:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  211 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:213:7: error: ‘EALREADY’ undeclared (first use in this function)
  213 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:214:7: error: ‘EISCONN’ undeclared (first use in this function)
  214 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:216:7: error: ‘EBADFD’ undeclared (first use in this function)
  216 |  case EBADFD:
      |       ^~~~~~
src/error.c:218:7: error: ‘ENOMEM’ undeclared (first use in this function)
  218 |  case ENOMEM:
      |       ^~~~~~
src/error.c:220:7: error: ‘EBUSY’ undeclared (first use in this function)
  220 |  case EBUSY:
      |       ^~~~~
src/error.c:222:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  222 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:224:7: error: ‘EIO’ undeclared (first use in this function)
  224 |  case EIO:
      |       ^~~
src/error.c:226:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  226 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:228:7: error: ‘EMLINK’ undeclared (first use in this function)
  228 |  case EMLINK:
      |       ^~~~~~
src/error.c:230:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  230 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:232:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  232 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:234:7: error: ‘EPROTO’ undeclared (first use in this function)
  234 |  case EPROTO:
      |       ^~~~~~
make[1]: *** [Makefile:9301: src/bluetoothd-error.o] Error 1
make: *** [Makefile:10406: check] Error 2


##############################
Test: Make Distcheck - FAIL
Desc: Run distcheck to check the distribution
Output:
../../src/error.c: In function ‘btd_error_bredr_conn_from_errno’:
../../src/error.c:164:7: error: ‘EALREADY’ undeclared (first use in this function)
  164 |  case EALREADY:
      |       ^~~~~~~~
../../src/error.c:164:7: note: each undeclared identifier is reported only once for each function it appears in
../../src/error.c:165:7: error: ‘EISCONN’ undeclared (first use in this function)
  165 |  case EISCONN: // Fall through
      |       ^~~~~~~
../../src/error.c:167:7: error: ‘EHOSTDOWN’ undeclared (first use in this function)
  167 |  case EHOSTDOWN:
      |       ^~~~~~~~~
../../src/error.c:169:7: error: ‘ENOPROTOOPT’ undeclared (first use in this function)
  169 |  case ENOPROTOOPT:
      |       ^~~~~~~~~~~
../../src/error.c:171:7: error: ‘EIO’ undeclared (first use in this function)
  171 |  case EIO:
      |       ^~~
../../src/error.c:173:7: error: ‘EINVAL’ undeclared (first use in this function)
  173 |  case EINVAL:
      |       ^~~~~~
../../src/error.c:175:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  175 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
../../src/error.c:177:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  177 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
../../src/error.c:178:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  178 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
../../src/error.c:180:7: error: ‘EBADFD’ undeclared (first use in this function)
  180 |  case EBADFD:
      |       ^~~~~~
../../src/error.c:182:7: error: ‘ENOMEM’ undeclared (first use in this function)
  182 |  case ENOMEM:
      |       ^~~~~~
../../src/error.c:184:7: error: ‘EBUSY’ undeclared (first use in this function)
  184 |  case EBUSY:
      |       ^~~~~
../../src/error.c:186:7: error: ‘EMLINK’ undeclared (first use in this function)
  186 |  case EMLINK:
      |       ^~~~~~
../../src/error.c:188:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  188 |  case ETIMEDOUT:
      |       ^~~~~~~~~
../../src/error.c:190:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  190 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
../../src/error.c:192:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  192 |  case ECONNRESET:
      |       ^~~~~~~~~~
../../src/error.c:194:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  194 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
../../src/error.c:196:7: error: ‘EPROTO’ undeclared (first use in this function)
  196 |  case EPROTO:
      |       ^~~~~~
../../src/error.c: In function ‘btd_error_le_conn_from_errno’:
../../src/error.c:206:7: error: ‘EINVAL’ undeclared (first use in this function)
  206 |  case EINVAL:
      |       ^~~~~~
../../src/error.c:208:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  208 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
../../src/error.c:210:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  210 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
../../src/error.c:211:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  211 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
../../src/error.c:213:7: error: ‘EALREADY’ undeclared (first use in this function)
  213 |  case EALREADY:
      |       ^~~~~~~~
../../src/error.c:214:7: error: ‘EISCONN’ undeclared (first use in this function)
  214 |  case EISCONN: // Fall through
      |       ^~~~~~~
../../src/error.c:216:7: error: ‘EBADFD’ undeclared (first use in this function)
  216 |  case EBADFD:
      |       ^~~~~~
../../src/error.c:218:7: error: ‘ENOMEM’ undeclared (first use in this function)
  218 |  case ENOMEM:
      |       ^~~~~~
../../src/error.c:220:7: error: ‘EBUSY’ undeclared (first use in this function)
  220 |  case EBUSY:
      |       ^~~~~
../../src/error.c:222:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  222 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
../../src/error.c:224:7: error: ‘EIO’ undeclared (first use in this function)
  224 |  case EIO:
      |       ^~~
../../src/error.c:226:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  226 |  case ETIMEDOUT:
      |       ^~~~~~~~~
../../src/error.c:228:7: error: ‘EMLINK’ undeclared (first use in this function)
  228 |  case EMLINK:
      |       ^~~~~~
../../src/error.c:230:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  230 |  case ECONNRESET:
      |       ^~~~~~~~~~
../../src/error.c:232:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  232 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
../../src/error.c:234:7: error: ‘EPROTO’ undeclared (first use in this function)
  234 |  case EPROTO:
      |       ^~~~~~
make[2]: *** [Makefile:9301: src/bluetoothd-error.o] Error 1
make[1]: *** [Makefile:4134: all] Error 2
make: *** [Makefile:10327: distcheck] Error 1


##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration

##############################
Test: Build w/ext ELL - Make - FAIL
Desc: Build BlueZ source with '--enable-external-ell' configuration
Output:
src/error.c: In function ‘btd_error_bredr_conn_from_errno’:
src/error.c:164:7: error: ‘EALREADY’ undeclared (first use in this function)
  164 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:164:7: note: each undeclared identifier is reported only once for each function it appears in
src/error.c:165:7: error: ‘EISCONN’ undeclared (first use in this function)
  165 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:167:7: error: ‘EHOSTDOWN’ undeclared (first use in this function)
  167 |  case EHOSTDOWN:
      |       ^~~~~~~~~
src/error.c:169:7: error: ‘ENOPROTOOPT’ undeclared (first use in this function)
  169 |  case ENOPROTOOPT:
      |       ^~~~~~~~~~~
src/error.c:171:7: error: ‘EIO’ undeclared (first use in this function)
  171 |  case EIO:
      |       ^~~
src/error.c:173:7: error: ‘EINVAL’ undeclared (first use in this function)
  173 |  case EINVAL:
      |       ^~~~~~
src/error.c:175:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  175 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:177:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  177 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:178:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  178 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:180:7: error: ‘EBADFD’ undeclared (first use in this function)
  180 |  case EBADFD:
      |       ^~~~~~
src/error.c:182:7: error: ‘ENOMEM’ undeclared (first use in this function)
  182 |  case ENOMEM:
      |       ^~~~~~
src/error.c:184:7: error: ‘EBUSY’ undeclared (first use in this function)
  184 |  case EBUSY:
      |       ^~~~~
src/error.c:186:7: error: ‘EMLINK’ undeclared (first use in this function)
  186 |  case EMLINK:
      |       ^~~~~~
src/error.c:188:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  188 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:190:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  190 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:192:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  192 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:194:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  194 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:196:7: error: ‘EPROTO’ undeclared (first use in this function)
  196 |  case EPROTO:
      |       ^~~~~~
src/error.c: In function ‘btd_error_le_conn_from_errno’:
src/error.c:206:7: error: ‘EINVAL’ undeclared (first use in this function)
  206 |  case EINVAL:
      |       ^~~~~~
src/error.c:208:7: error: ‘EHOSTUNREACH’ undeclared (first use in this function)
  208 |  case EHOSTUNREACH:
      |       ^~~~~~~~~~~~
src/error.c:210:7: error: ‘EOPNOTSUPP’ undeclared (first use in this function)
  210 |  case EOPNOTSUPP:
      |       ^~~~~~~~~~
src/error.c:211:7: error: ‘EPROTONOSUPPORT’ undeclared (first use in this function)
  211 |  case EPROTONOSUPPORT: // Fall through
      |       ^~~~~~~~~~~~~~~
src/error.c:213:7: error: ‘EALREADY’ undeclared (first use in this function)
  213 |  case EALREADY:
      |       ^~~~~~~~
src/error.c:214:7: error: ‘EISCONN’ undeclared (first use in this function)
  214 |  case EISCONN: // Fall through
      |       ^~~~~~~
src/error.c:216:7: error: ‘EBADFD’ undeclared (first use in this function)
  216 |  case EBADFD:
      |       ^~~~~~
src/error.c:218:7: error: ‘ENOMEM’ undeclared (first use in this function)
  218 |  case ENOMEM:
      |       ^~~~~~
src/error.c:220:7: error: ‘EBUSY’ undeclared (first use in this function)
  220 |  case EBUSY:
      |       ^~~~~
src/error.c:222:7: error: ‘ECONNREFUSED’ undeclared (first use in this function)
  222 |  case ECONNREFUSED:
      |       ^~~~~~~~~~~~
src/error.c:224:7: error: ‘EIO’ undeclared (first use in this function)
  224 |  case EIO:
      |       ^~~
src/error.c:226:7: error: ‘ETIMEDOUT’ undeclared (first use in this function)
  226 |  case ETIMEDOUT:
      |       ^~~~~~~~~
src/error.c:228:7: error: ‘EMLINK’ undeclared (first use in this function)
  228 |  case EMLINK:
      |       ^~~~~~
src/error.c:230:7: error: ‘ECONNRESET’ undeclared (first use in this function)
  230 |  case ECONNRESET:
      |       ^~~~~~~~~~
src/error.c:232:7: error: ‘ECONNABORTED’ undeclared (first use in this function)
  232 |  case ECONNABORTED:
      |       ^~~~~~~~~~~~
src/error.c:234:7: error: ‘EPROTO’ undeclared (first use in this function)
  234 |  case EPROTO:
      |       ^~~~~~
make[1]: *** [Makefile:9301: src/bluetoothd-error.o] Error 1
make: *** [Makefile:4134: all] Error 2




---
Regards,
Linux Bluetooth


  reply	other threads:[~2021-06-18  1:30 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-18  0:15 [BlueZ PATCH v1 0/3] Detailed error code Miao-chen Chou
2021-06-18  0:15 ` [BlueZ PATCH v1 1/3] error: BR/EDR and LE connection failure reasons Miao-chen Chou
2021-06-18  1:30   ` bluez.test.bot [this message]
2021-06-18 18:18   ` Luiz Augusto von Dentz
2021-06-26  1:51     ` Miao-chen Chou
2021-06-18  0:16 ` [BlueZ PATCH v1 2/3] device: Include BtdError code in Connect() return Miao-chen Chou
2021-06-18  0:16 ` [BlueZ PATCH v1 3/3] client: Print error code for connect methods Miao-chen Chou
2021-06-18 18:40 ` [BlueZ PATCH v1 0/3] Detailed error code Luiz Augusto von Dentz
  -- strict thread matches above, loose matches on Subject: below --
2021-06-26  5:21 [BlueZ PATCH v2 1/3] error: BR/EDR and LE connection failure reasons Miao-chen Chou
2021-06-26  5:52 ` Detailed error code bluez.test.bot
2021-07-15  1:09 [BlueZ PATCH v3 1/4] doc: Add error-codes.txt to describe error codes of D-Bus method returns Miao-chen Chou
2021-07-15  1:24 ` Detailed error code bluez.test.bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=60cbf73d.1c69fb81.46f44.1bd7@mx.google.com \
    --to=bluez.test.bot@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=mcchou@chromium.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).