1:orphan: 2 3.. _zephyr_1.12: 4 5Zephyr Kernel 1.12.0 6#################### 7 8We are pleased to announce the release of Zephyr kernel version 1.12.0. 9 10Major enhancements with this release include: 11 12- Asymmetric multiprocessing (AMP) via integration of OpenAMP 13- Persistent storage support for Bluetooth Low Energy including Mesh 14- 802.1Q - Virtual Local Area Network (VLAN) traffic on an Ethernet network 15- Support multiple concurrent filesystem devices, partitions, and FS types 16- Ethernet network management interface 17- Networking traffic prioritization on a per-connection basis 18- Support for Ethernet statistical counters 19- Support for TAP net device on the native POSIX port 20- Command-line Zephyr meta-tool "west" 21- SPI slave support 22- Runtime non-volatile configuration data storage system (settings) 23 24 25The following sections provide detailed lists of changes by component. 26 27Security Vulnerability Related 28****************************** 29 30* A suitably sized k_malloc() request can result in a smaller than 31 requested buffer. Use of that buffer could result in writes to 32 unallocated memory. Proper overflow checks were added to fix this 33 issue in k_malloc and k_calloc. 34 35 * kernel: mempool: Check for overflow in k_malloc() 36 * kernel: mempool: Always check for overflow in k_calloc() 37 * tests: mempool: Add overflow checks 38 39Kernel 40****** 41 42* Added k_thread_foreach API 43* kernel/sched: Fix preemption logic 44* kernel/sched: Fix SMP scheduling 45* kernel/sched: Don't preempt cooperative threads 46* kernel: Scheduler rewrite 47* kernel: Fix sloppy wait queue API 48* kernel/mempool: Handle transient failure condition 49* kernel: handle early entropy issues 50* kernel: Earliest-deadline-first scheduling policy 51* kernel: Add "meta IRQ" thread priorities 52* kernel: introduce initial stack randomization 53* k_poll: expose to user mode 54* k_queue: allow user mode access via allocators 55* mempool: add API for malloc semantics 56* userspace: add support for dynamic kernel objects 57 58Architectures 59************* 60 61* arch: arc: refactor the arc stack check support 62* arch: arc: add the support of STACK_SENTINEL 63* arch: arc: optimize the _SysFatalErrorHandler 64* arch: arc: bug fixes in irq_load 65* arch: arc: bug fixes and optimization in exception handling 66* arch: arm: Fix zero interrupt latency priority level 67* arch: arm: refactor default _FaultDump to provide fatal error code 68* arch: arm: Define & implement API for test target (Non-Secure) 69* arch: arm: thread built-in stack guard implementation 70* arch: arm: lpc: Added support for Cortex-M0+ on lpc54114 soc 71* arch: arm: Secure fault handling for Cortex-M23 72* arch: arm: SecureFault Handling for Cortex-M33A 73* arch: arm: Change method of __swap processing 74* arm_mpu: reduce boot MPU regions for various soc 75* arm: userspace: fix initial user sp location 76* arm: userspace: Rework system call arguments 77* arm: syscalls: fix some register issues 78* dts: nios2-qemu: add device tree support 79* dts: nios2f: Add device tree support 80* dts: x86: derive RAM and ROM size from dts instead of Kconfig 81* dts: xtensa: Add device tree support for xtensa 82* newlib: fix heap user mode access for MPU devices 83* nxp_imx/mcimx7_m4: Added support for i.MX7 Cortex M4 core 84* x86: minnowboard: Enable the userspace mode 85* arch: x86: Unwind the stack on fatal errors 86* xtensa: provide XCC compiler support for Xtensa 87 88Boards 89****** 90 91* Added support for the following Arm boards: 92 93 * 96b_argonkey 94 * adafruit_feather_m0_basic_proto 95 * colibri_imx7d_m4 96 * dragino_lsn50 97 * lpcxpresso54114_m0 98 * nrf51_ble400 99 * nrf52_pca20020 100 * nucleo_f070rb 101 * nucleo_f446re 102 * nucleo_l053r8 103 * nucleo_l073rzA 104 * olimex_stm32_h407 105 * stm32f0_disco 106 107* Added support for the following RISC-V boards: 108 109 * hifive1 110 111* Added support for the following Xtensa boards: 112 113 * intel_s1000_crb 114 115* arc: Added device tree support for all ARC SoCs 116* arm: Renamed lpcxpresso54114 to lpcxpresso54114_m4 117* nios2: Added device tree support for qemu_nios2 and altera_max10 118* Continued adding dts support for device drivers (gpio, spi, i2c, sensors, usb) 119 120Drivers and Sensors 121******************* 122 123* can: Added CAN driver support for STM32 SoCs 124* display: Added ILI9340 LCD display driver 125* dma: Added dma driver for Nios-II MSGDMA core 126* dma: Introduce Intel CAVS DMA 127* ethernet: Added ethernet driver for native posix arch 128* gpio: Added support for i.MX GPIO 129* gpio: Added driver for SX1509B 130* gpio: Added GPIO for SAM family 131* gpio: Added GPIO driver for stm32l0x 132* i2s: Introduce CAVS I2S 133* ieee802154: Added OpenThread modifications to KW41Z driver 134* interrupts: introduce CAVS interrupt logic 135* interrupts: Introduce Designware interrupt controller 136* ipm: Added mcux ipm driver for LPC SoCs 137* led: Added new public API and driver support for TI LP3943 138* pinmux: Added pinmux driver for stm32l0x 139* rtc: Added mcux RTC driver for Kinetis SoCs 140* sensor: Added sensorhub support to lsm6dsl driver 141* sensor: Added trigger support to lsm6dsl 142* serial: Added support for i.MX UART interface 143* spi: Added shims for nrfx SPIS and SPIM drivers 144* spi: Updated mcux shim driver to new SPI API 145* spi: Updated sensor and radio drivers to new SPI API 146* usb: Added usb device driver for Kinetis USBFSOTG controller 147* usb: Added usb support for stml072/73, stm32f070/72 148* usb: Enable usb2.0 on intel_s1000 149* usb: Added nRF52840 USB Device Controller Driver 150* watchdog: Added mcux watchdog driver for Kinetis SoCs 151* watchdog: Added nrfx watchdog driver for NRF SoCs 152* wifi: Added winc1500 WiFi driver 153 154Networking 155********** 156 157* Minimal server side websocket support. 158* Add network support to syslog. 159* Reducing net_pkt RAM usage. 160* TCP code refactoring. TCP code is now in one place in tcp.c 161* Support MSG_DONTWAIT and MSG_PEEK in recvfrom() socket call. 162* Support MSG_DONTWAIT in sendto() socket call. 163* Add support for freeaddrinfo() API. 164* Allow empty service in getaddrinfo() API. 165* Add PRIORITY support to net_context. This is working same way as SO_PRIORITY 166 in BSD sockets API. 167* Add network traffic classification support to Rx and Tx paths. This allows 168 prioritization of incoming or outgoing network traffic. Both Rx and Tx can 169 have max 8 network queues. 170* Add network interface up/down command to net-shell. 171* Create ethernet driver for native_posix board. The driver is enabled 172 automatically if networking is active when compiling for native_posix board. 173* Support network packet checksum calculation offloading. This is available for 174 ethernet based boards. 175* Add support for ethernet virtual LANs (VLAN). Following ethernet drivers 176 support VLANs: frdm_k64f, sam_e70_explained, native_posix and qemu. 177* Allow network statistics collection / network interface. 178* Add network management support to ethernet sub-system. 179* Add network capabilities support to ethernet network drivers. This is used 180 for management purposes. 181* Allow collection of ethernet statistics. Currently only native_posix ethernet 182 driver supports this. 183* Add OpenThread support for KW41Z driver. 184* Add initial WiFi management API definitions. 185* Add a shell module for controlling WiFi devices. 186* Add dedicated net mgmt hooks for WiFi offload devices. 187* Use proper IPv4 source address when sending IPv4 packets. 188* Add support for energy detection scan on IEEE 802.15.4 driver API. 189* Add support for filtering source short IEEE 802.15.4 addresses. 190* Add RPL border router sample application. 191* LWM2M code refactoring. 192* LWM2M OPTIONAL resource fixes. 193* LWM2M source port fixes. 194* LWM2M resource usage enhancements. 195* Fixing network management event ordering. 196* Fix ENC28J70 ethernet driver. 197* CoAP sample application fixes. 198* Network timeout fixes. 199* ICMPv6 error check fixes. 200* Net-app API port number fixes. 201* WPAN USB driver and sample application fixes. 202* BSD socket sample application fixes. 203* Fix IPv4 echo-request (ping) in net-shell when having multiple network 204 interfaces. 205* Fixing IPv6 compile error in certain configuration. 206 207Bluetooth 208********* 209 210* settings-based persistent storage functionality for BLE (including CCC) and 211 Mesh 212* Mesh-specific optimizations to avoid flash wear 213* Added a new API to set the identity address from the application 214* Old bt_storage API removed from the codebase 215* Rewrote the HCI SPI driver to comply with the new API 216* Added BLE support for the standard entropy driver via an ISR-friendly call 217* Multiple BLE Mesh bugfixes and improvements 218* Added option to use the identity address for advertising even when using 219 privacy 220* Added support for L2CAP dynamically allocated PSM values 221* GATT CCC handling fixes 222* GATT attribute declaration macros reworked for clarity 223* Fixed handlng of connection cancellation in the controller 224* Fixed a potential assertion failure in the controller related to white list 225 handling 226 227Build and Infrastructure 228************************ 229 230* build: use git version and hash for boot banner 231* kconfig: Drop support for CONFIG_TOOLCHAIN_VARIANT 232* kconfig: Remove the C Kconfig implementation 233* scripts: kconfig: Add a Python menuconfig implementation 234* scripts: west: introduce common runner configuration 235* scripts: debug, debugserver and flash scripts for intel_s1000 236* xtensa: provide XCC compiler support for Xtensa 237 238Libraries / Subsystems 239*********************** 240 241* subsys/disk: Added support for multiple disk interfaces 242* subsys/fs: Added support for multiple instances of filesystem 243* subsys/fs: Added Virtual File system Switch (VFS) support 244* lib/posix: Added POSIX Mutex support 245* lib/posix: Added POSIX semaphore support 246* crypto: Updated mbedTLS to 2.9.0 247* Imported libmetal and OpenAMP for IPC 248 249HALs 250**** 251 252* altera: Add modular Scatter-Gather DMA HAL driver 253* atmel: Added winc1500 driver from Atmel 254* cmsis: Update ARM CMSIS headers to version 5.3.0 255* nordic: Import SVD files for nRF5 SoCs 256* nordic: Update nrfx to version 1.0.0 257* nxp: imported i.MX7 FreeRTOS HAL 258* nxp: Added dual core startup code for lpc54114 based on mcux 2.3.0 259* stm32l0x: Add HAL for the STM32L0x series 260 261Documentation 262************* 263 264* Added description for kernel test cases through extensive doxygen comments 265* Discovered some API docs were missing, and fixed 266* Documentation added covering system calls and userspace, kernel, and 267 threading APIs, POSIX compatibility, VLANs, network traffic 268 classification, and the sanitycheck script used by CI. 269* Documented writing guidelines and local doc generation process 270* Improved Sphinx search results output (removed markup) 271* Improved configuration options auto-generated documentation 272* Significantly reduced local doc regeneration time 273 274Tests and Samples 275***************** 276* Added test for POSIX mutex 277* Added Apple iBeacon sample application 278* Enhanced threads test suite 279* Added tests for memory domain 280 281Issue Related Items 282******************* 283 284These GitHub issues were closed since the previous 1.11.0 tagged release: 285 286.. comment List derived from GitHub Issue query: ... 287 * :github:`issuenumber` - issue title 288 289* :github:`1420` - LXR for Zephyr 290* :github:`1582` - USB: Add support for MS OS Descriptors 291* :github:`1620` - BT 4.2 Controller-based link-layer privacy 292* :github:`1651` - ARC: remove tickless idle dependency on SW ISR table 293* :github:`1655` - clean up how internal APIs are used 294* :github:`1799` - Provide an interface for cpu/soc id and version 295* :github:`1882` - SMP - Multi-core 296* :github:`1896` - Thread Protocol 297* :github:`2001` - Add support in I2C shim driver for DMA transfer mode 298* :github:`2002` - Add support in SPI shim driver for DMA transfer mode 299* :github:`2341` - Thread requirements in RFC1122 300* :github:`2342` - Thread requirements in RFC2460 301* :github:`2343` - Thread requirements in RFC4291 302* :github:`2344` - Thread requirements in RFC4443 303* :github:`2345` - Thread requirements in RFC4944 304* :github:`2346` - Thread Requirements on RFC6282 305* :github:`2360` - Review ALL device driver APIs and enhance them to support variety of devices and MCUs 306* :github:`2410` - Create APIs for app to create and mount FS 307* :github:`2446` - Different address used for advertising in non-connectable mode from oob data 308* :github:`2452` - Add framework for provisioning-style device configuration 309* :github:`2529` - GPIO API Update 310* :github:`2593` - Consider subdividing applications into different categories 311* :github:`2613` - Extend USB stack so it covers multiple device classes switchable on runtime 312* :github:`2654` - Encoding/Decoding Libraries 313* :github:`2860` - Customer: GUI for Zephyr configuration 314* :github:`2916` - event logger: context switch event is not supported at ARC 315* :github:`2977` - Install nSIM on CI machines 316* :github:`2978` - Add Support for Multiple Simultaneous Backends/Partitions for FS 317* :github:`2987` - Add support for computing IP, TCP, UDP checksums in hardware 318* :github:`3065` - Asymmetric multiprocessing (AMP) 319* :github:`3152` - Support Atmel WINC1500 Wifi module 320* :github:`3167` - consolidate all quark se c1000 arc boards into one 321* :github:`3234` - 802.1Q - Virtual LANs 322* :github:`3282` - Quick Kernel Resume 323* :github:`3339` - IoTivity Import and Interoperability with CoAP and DTLS 324* :github:`3348` - Missing board documentation for arc/quark_se_c1000_ss_devboard 325* :github:`3369` - BSD Sockets API layer 326* :github:`3373` - Atmel board/ Driver Support 327* :github:`3384` - DataReady triggers failed to stop on BMI160 when both Accel/Gyro is enabled 328* :github:`3388` - Power management-Idle State 329* :github:`3389` - Power management-Device State 330* :github:`3433` - Nordic SPI driver 331* :github:`3471` - Espressif ESP Architecture Support 332* :github:`3479` - Implement complete set of stm32cube driver based on LL API for STM32 SoCs 333* :github:`3482` - Standardize stm32 SoCs porting 334* :github:`3500` - ESP8266 Architecture Configuration 335* :github:`3516` - Arduino 101 filesystem fails test 336* :github:`3624` - Memory protection: define allocators for kernel objects 337* :github:`3637` - Xtensa build is producing huge zephyr.bin 338* :github:`3650` - no board target for Risc-V Freedom E310 SOC 339* :github:`3703` - Doesn't compile if XCHAL_HAVE_ICACHE_DYN_WAYS and XCHAL_HAVE_DCACHE_DYN_WAYS are defined for an Xtensa processor 340* :github:`3711` - RPL root node Grounded flag should be followed by client node 341* :github:`3739` - linker: implement MPU alignment constraints 342* :github:`3744` - Improve configuration tools for Windows developers 343* :github:`3782` - SPI Slave support 344* :github:`3819` - Add 802.15.4 Sub-Ghz TI CC1200 driver 345* :github:`3824` - Add RPL border router functionality to Zephyr 346* :github:`3849` - Reduce the overall memory usage of the LwM2M library 347* :github:`3869` - Verify thath echo_server and echo_client examples work over Thread network 348* :github:`3910` - IEEE 802.15.4 MCR20A driver problem sending packets 349* :github:`3994` - Watchdog API update 350* :github:`4012` - echo_server with DTLS drops lots of packets on frdm_k64f 351* :github:`4052` - Coverity issue seen with CID: 177217 , in file: /tests/subsys/dfu/img_util/src/main.c 352* :github:`4053` - Coverity issue seen with CID: 177216 , in file: /tests/subsys/dfu/mcuboot/src/main.c 353* :github:`4066` - Function typedef issue when generating htmldocs. 354* :github:`4213` - samples/net/: unexpected communication happens between echo_client and echo_server sample applications 355* :github:`4217` - samples:net:sockets:echo_async : unexpected communication blocks between client and server after few packets transmission 356* :github:`4309` - xtensa: GDB: Unable to debug 357* :github:`4533` - IPv6/DAD: Things should be synchronized around net if up status and ipv6 addr add 358* :github:`4684` - mtls and tinycrypt crypto drivers not returning number of bytes written to output buffer 359* :github:`4713` - SPI: Update drivers to drop support of the legacy API 360* :github:`4959` - Failure to install on Mac OS High Sierra (return of the same error) 361* :github:`4963` - Convert NIOS2 boards to device tree 362* :github:`4964` - Convert ARC boards to device tree 363* :github:`5149` - Runtime non-volatile configuration system 364* :github:`5254` - missing test for kernel event logger 365* :github:`5274` - Issue with pinmux combination for FRDK-K64F setup for cc2520 366* :github:`5327` - 1.11 Release Checklist 367* :github:`5344` - samples/net/http_client: unable to send the proper http request to Apache server in IPv6 368* :github:`5482` - net: RFC: Move TCP-related code from net_context.c to tcp.c 369* :github:`5554` - Support maintaining subsystems out-of-tree 370* :github:`5577` - Document interaction between mcuboot and Zephyr 371* :github:`5622` - Use the kconfiglib in scripts/kconfig for generating Kconfig documentation 372* :github:`5633` - Optimize the CMake configuration time by reducing the time spent testing the toolchain 373* :github:`5653` - STM32 boards: Generic guidelines for pin configuration 374* :github:`5658` - Clicking on intra-page links broken on docs.zephyrproject.org 375* :github:`5714` - 15.4 features required for OpenThread certification 376* :github:`5718` - sanitycheck doesn't work on Windows (mkfifo not supported) 377* :github:`5738` - [Coverity CID: 182194] Control flow issues in /subsys/storage/flash_map/flash_map.c 378* :github:`5739` - [Coverity CID: 182193] Control flow issues in /subsys/storage/flash_map/flash_map.c 379* :github:`5742` - [Coverity CID: 181921] Incorrect expression in /subsys/bluetooth/controller/ll_sw/ctrl.c 380* :github:`5757` - native: fix -T warning while linking 381* :github:`5767` - docs: Zephyr OpenOCD documentation is weak/non-existent 382* :github:`5797` - SPI subsystem API & features updates 383* :github:`5807` - Can't build Arduino_101 on Mac following instructions 384* :github:`5839` - SPI API improvements proposals 385* :github:`5847` - make menuconfig not supported on Windows 386* :github:`5891` - [Coverity CID: 182585] Integer handling issues in /arch/x86/core/thread.c 387* :github:`5892` - [Coverity CID: 182584] Integer handling issues in /kernel/sched.c 388* :github:`5942` - OT: add framing part to OT build for the radio drivers with dependence on AR flag 389* :github:`5953` - Build system: typedef not fit with zephyr type when CONFIG_NEWLIB_LIBC is enabled 390* :github:`5956` - samples/net/coap_server: Failed to send response to coap client 391* :github:`5978` - "$ ninja kconfig-usage" is out-of-date 392* :github:`6007` - native: Add support for TAP net device 393* :github:`6022` - Consistent feature dependency checks based on ARMvX-M 394* :github:`6029` - doc: Zephyr sphinx/pygments support DTS 395* :github:`6038` - Update Zephyr Licensing page 396* :github:`6093` - [Coverity CID: 182778] Error handling issues in /samples/net/sockets/dumb_http_server/src/socket_dumb_http.c 397* :github:`6094` - [Coverity CID: 182777] Error handling issues in /samples/net/sockets/dumb_http_server/src/socket_dumb_http.c 398* :github:`6095` - [Coverity CID: 182776] Uninitialized variables in /tests/net/socket/udp/src/main.c 399* :github:`6096` - [Coverity CID: 182775] Error handling issues in /tests/net/socket/udp/src/main.c 400* :github:`6097` - [Coverity CID: 182774] Resource leaks in /tests/net/socket/udp/src/main.c 401* :github:`6098` - [Coverity CID: 182773] Error handling issues in /samples/net/sockets/http_get/src/http_get.c 402* :github:`6099` - [Coverity CID: 182772] Error handling issues in /tests/net/socket/udp/src/main.c 403* :github:`6100` - [Coverity CID: 182771] Error handling issues in /samples/net/sockets/dumb_http_server/src/socket_dumb_http.c 404* :github:`6101` - [Coverity CID: 182770] Error handling issues in /samples/net/sockets/http_get/src/http_get.c 405* :github:`6103` - [Coverity CID: 182768] Error handling issues in /samples/net/sockets/dumb_http_server/src/socket_dumb_http.c 406* :github:`6104` - [Coverity CID: 182767] Error handling issues in /tests/net/socket/udp/src/main.c 407* :github:`6105` - [Coverity CID: 182766] Uninitialized variables in /tests/net/socket/udp/src/main.c 408* :github:`6106` - [Coverity CID: 182765] Error handling issues in /tests/net/socket/udp/src/main.c 409* :github:`6107` - [Coverity CID: 182764] Resource leaks in /tests/net/socket/udp/src/main.c 410* :github:`6108` - [Coverity CID: 182763] Uninitialized variables in /tests/net/socket/udp/src/main.c 411* :github:`6109` - [Coverity CID: 182762] Control flow issues in /subsys/storage/flash_map/flash_map.c 412* :github:`6230` - Bluetooth: controller: refactor to use min/max macro 413* :github:`6258` - [Coverity CID: 182894] Error handling issues in /samples/net/nats/src/main.c 414* :github:`6259` - [Coverity CID: 182892] Various in /tests/ztest/src/ztest.c 415* :github:`6260` - [Coverity CID: 182890] Null pointer dereferences in /tests/net/net_pkt/src/main.c 416* :github:`6262` - [Coverity CID: 182886] Error handling issues in /subsys/bluetooth/controller/hal/nrf5/ticker.c 417* :github:`6287` - runtime allocation of kernel objects 418* :github:`6288` - better heap APIs for user mode 419* :github:`6307` - Unaligned access in networking code causes unaligned exception on Nucleo-F429ZI 420* :github:`6338` - Bluetooth: mesh: Node Identity Advertising issue 421* :github:`6342` - echo server: incorrect Ethernet FCS and checksum in echo response when running in QEMU 422* :github:`6347` - dhcpv4_client sample on spi_api_rework branch with board olimexino_stm32 does not work well 423* :github:`6356` - samples/net/http_server causes an endless loop with wget 424* :github:`6370` - I can't find adc name which is f429zi board 425* :github:`6372` - ARMv8-M: implement & integrate SecureFault Handling 426* :github:`6384` - Native (POSIX) zephyr.exe command line options not documented 427* :github:`6388` - entropy_native_posix doesn't follow "entropy" contract and is thus security risk 428* :github:`6400` - samples/net/http_client: Failed to connect to samples/net/http_server 429* :github:`6413` - net_mgmt.h API event set data structure leads to undesirable behavior 430* :github:`6424` - tests/kernel/mem_protect/x86_mmu_api: crashes on Arduino_101 431* :github:`6450` - Several devices of same type on same bus - how to address? 432* :github:`6511` - simics/qemu_x86_nommu: testscases with CONFIG_BOOT_DELAY !=0 do not boot 433* :github:`6513` - arch: arc: the stack_sentinel is not supported in arc 434* :github:`6514` - samples/drivers/i2c_fujitsu_fram: Data comparison on data written and data read fails randomly 435* :github:`6515` - boards: em_starterkit: the reset mechanism is not stable 436* :github:`6534` - coap-server: Canceling Observation not working 437* :github:`6559` - boards with i2c child nodes fail to build on windows 438* :github:`6564` - samples/net/echo_client: Failed to connect to samples/net/echo_server for IPV4 test 439* :github:`6565` - samples/net/sockets/echo: Failed to connect to samples/net/echo_server for IPV6 test 440* :github:`6577` - sam0: SPI CS released too early 441* :github:`6583` - samples/net/http_client: Failed to connect to 442* :github:`6588` - Traffic prioritization on per-connection basis 443* :github:`6594` - usb: replace "unicode" with "utf16le" 444* :github:`6611` - Make sanitycheck run on Windows 445* :github:`6616` - Non-detected/delayed sanitycheck failures due to ROM/RAM overflow 446* :github:`6621` - newlib expects HEAP to be in CONFIG_SRAM_*, on arc there isn't always SRAM 447* :github:`6623` - Request to support Application's Kconfig tree 448* :github:`6625` - stm32: pwm: PWM 3 typo 449* :github:`6635` - tests/net/websocket/test doesnt build on qemu_xtensa 450* :github:`6640` - Ethernet network management interface additions 451* :github:`6643` - usb: nrf52 returns empty configuration responses 452* :github:`6644` - Bluetooth: Add reason parameter to L2CAP Channel disconnected callback 453* :github:`6646` - usb: protocol field in descriptor for CDC ACM should default to zero 454* :github:`6651` - sanity tries to compile things when it should not 455* :github:`6657` - Question: Is Bluetooth avrcp supported in Zephyr? Or any plan? 456* :github:`6660` - [Coverity CID: 183072] Incorrect expression in /tests/lib/c_lib/src/main.c 457* :github:`6661` - [Coverity CID: 183071] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c 458* :github:`6662` - [Coverity CID: 183070] Uninitialized variables in /tests/posix/timer/src/posix_timer.c 459* :github:`6663` - [Coverity CID: 183068] Incorrect expression in /tests/kernel/fatal/src/main.c 460* :github:`6665` - [Coverity CID: 183067] Incorrect expression in /tests/lib/c_lib/src/main.c 461* :github:`6666` - [Coverity CID: 183066] Error handling issues in /tests/kernel/mbox/mbox_api/src/test_mbox_api.c 462* :github:`6667` - [Coverity CID: 183065] Integer handling issues in /tests/posix/timer/src/posix_timer.c 463* :github:`6668` - [Coverity CID: 183064] Incorrect expression in /tests/kernel/common/src/intmath.c 464* :github:`6669` - [Coverity CID: 183063] Null pointer dereferences in /tests/net/websocket/src/server.c 465* :github:`6670` - [Coverity CID: 183062] Error handling issues in /samples/net/sockets/big_http_download/src/big_http_download.c 466* :github:`6671` - [Coverity CID: 183061] Incorrect expression in /tests/kernel/mem_pool/mem_pool/src/main.c 467* :github:`6672` - [Coverity CID: 183060] Incorrect expression in /tests/kernel/fatal/src/main.c 468* :github:`6674` - [Coverity CID: 183058] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c 469* :github:`6675` - [Coverity CID: 183057] Memory - illegal accesses in /subsys/net/lib/websocket/websocket.c 470* :github:`6677` - [Coverity CID: 183055] Concurrent data access violations in /kernel/posix/pthread.c 471* :github:`6679` - [Coverity CID: 183053] Memory - corruptions in /samples/net/ws_echo_server/src/ws.c 472* :github:`6680` - [Coverity CID: 183052] Memory - corruptions in /tests/net/app/src/main.c 473* :github:`6682` - [Coverity CID: 183050] Memory - illegal accesses in /subsys/net/lib/websocket/websocket.c 474* :github:`6683` - [Coverity CID: 183049] Incorrect expression in /tests/lib/c_lib/src/main.c 475* :github:`6684` - [Coverity CID: 183048] Program hangs in /tests/posix/pthread_rwlock/src/posix_rwlock.c 476* :github:`6685` - [Coverity CID: 183047] Uninitialized variables in /kernel/smp.c 477* :github:`6686` - [Coverity CID: 183046] Memory - corruptions in /drivers/console/uart_console.c 478* :github:`6687` - [Coverity CID: 183045] Error handling issues in /tests/drivers/spi/spi_loopback/src/spi.c 479* :github:`6688` - [Coverity CID: 183044] Memory - corruptions in /tests/net/app/src/main.c 480* :github:`6689` - [Coverity CID: 183043] Incorrect expression in /tests/kernel/common/src/intmath.c 481* :github:`6690` - [Coverity CID: 183042] Program hangs in /tests/posix/pthread_rwlock/src/posix_rwlock.c 482* :github:`6691` - [Coverity CID: 183041] Memory - corruptions in /tests/net/websocket/src/server.c 483* :github:`6692` - [Coverity CID: 183040] Incorrect expression in /tests/kernel/static_idt/src/static_idt.c 484* :github:`6693` - [Coverity CID: 183039] Error handling issues in /tests/kernel/mem_slab/mslab_threadsafe/src/test_mslab_threadsafe.c 485* :github:`6694` - [Coverity CID: 183038] Integer handling issues in /kernel/posix/timer.c 486* :github:`6697` - [Coverity CID: 183035] Null pointer dereferences in /tests/net/udp/src/main.c 487* :github:`6698` - [Coverity CID: 183034] Error handling issues in /tests/net/websocket/src/main.c 488* :github:`6699` - [Coverity CID: 183033] Program hangs in /tests/posix/pthread_rwlock/src/posix_rwlock.c 489* :github:`6700` - [Coverity CID: 183032] Error handling issues in /tests/net/websocket/src/main.c 490* :github:`6701` - [Coverity CID: 183031] Error handling issues in /tests/posix/semaphore/src/sem.c 491* :github:`6702` - [Coverity CID: 183030] Memory - corruptions in /drivers/console/uart_console.c 492* :github:`6719` - compilation problems with posix/unistd.h 493* :github:`6726` - setting locale breaks MacOS X builds 494* :github:`6749` - kconfig: The error message is misleading when values are out-of-range 495* :github:`6755` - stm32: Compile error if 2-nd UART console enabled 496* :github:`6757` - kernel:the API of k_mem_pool_alloc need try again to -EAGAIN[bug] 497* :github:`6759` - sanitycheck in shippable states faillure but reports 0 errors 498* :github:`6764` - ARC EMSK dts enhancements 499* :github:`6779` - websocket API documentation missing 500* :github:`6792` - [Coverity CID: 183443] Memory - corruptions in /subsys/bluetooth/controller/ll_sw/ctrl.c 501* :github:`6793` - [Coverity CID: 183442] Null pointer dereferences in /subsys/net/ip/icmpv6.c 502* :github:`6802` - unexpected user mode stack overflows on ARM 503* :github:`6811` - Add ReST/Sphinx usage guide to our contributing documentation 504* :github:`6814` - user mode does not work with newlib 505* :github:`6821` - Simplify rendering of Kconfig variable doc 506* :github:`6822` - Document how to flash with openocd on windows 507* :github:`6831` - Update template docs with build example 508* :github:`6833` - Question: BLE 5.0 extended advertising feature support for HCI 509* :github:`6844` - Update Kconfiglib to improve generated documentation 510* :github:`6849` - Some Kconfig symbols select choice symbols, which is a no-op 511* :github:`6851` - 'make html' in doc/ fails with lexer.DtsLexer import error 512* :github:`6854` - 'make html' in doc/ gives an error if doc.log is missing or empty 513* :github:`6866` - build: requirements: No module named yaml and elftools 514* :github:`6874` - Not able to join OpenThread BorderRouter or a ot-ftd-cli network 515* :github:`6879` - Display symbols with multiple defs. with the right properties in the Kconfig documentation 516* :github:`6881` - [Coverity CID: 183487] Control flow issues in /subsys/net/ip/net_core.c 517* :github:`6882` - [Coverity CID: 183486] Null pointer dereferences in /tests/net/traffic_class/src/main.c 518* :github:`6883` - [Coverity CID: 183485] Memory - illegal accesses in /subsys/net/ip/net_tc.c 519* :github:`6884` - [Coverity CID: 183484] Null pointer dereferences in /tests/net/checksum_offload/src/main.c 520* :github:`6885` - [Coverity CID: 183482] Memory - illegal accesses in /subsys/net/ip/net_tc.c 521* :github:`6886` - [Coverity CID: 183481] Insecure data handling in /ext/lib/crypto/mbedtls/library/pkparse.c 522* :github:`6887` - [Coverity CID: 183480] Null pointer dereferences in /tests/net/checksum_offload/src/main.c 523* :github:`6888` - [Coverity CID: 183479] Insecure data handling in /ext/lib/crypto/mbedtls/library/pkparse.c 524* :github:`6889` - [Coverity CID: 183478] Error handling issues in /tests/net/ipv6/src/main.c 525* :github:`6890` - tests: kernel: arm_irq_vector_table: Usage fault on nrf52_pca10040 526* :github:`6891` - jlink flashing is broken in windows 527* :github:`6893` - http_client: Struct data is erased for no apparent reason 528* :github:`6896` - too many static MPU regions on many ARM targets 529* :github:`6897` - Can't build i586 on Mac following instructions 530* :github:`6899` - support Ethernet statistical counters 531* :github:`6902` - k_call_stacks_analyze needs to be reimplemented and optimized 532* :github:`6907` - driver_api structs should have all function pointers defined 533* :github:`6908` - shippable: console limit error (Console size exceeds 16 MB limit) 534* :github:`6909` - Number of regions in arm_core_mpu_buffer_validate() can overflow 535* :github:`6911` - xtools build hard-coded to use IAMCU compiler for all x86 targets 536* :github:`6912` - OS X: setup instructions are wrong 537* :github:`6929` - Make slab allocator work on user mode 538* :github:`6937` - Add option for configuring P0.9 and P0.10 as GPIO 539* :github:`6948` - Kconfig choice symbols could not be assigned in Kconfig.* files 540* :github:`6957` - NRF52840: I2C, SPI driver 541* :github:`6972` - RFC: kernel heap requests on behalf of syscalls 542* :github:`6973` - bad magic number in 'kconfiglib' error when generating docs 543* :github:`6978` - Fix issues with running Python's curses module on Windows 544* :github:`6980` - extended Advertising BLE-5 545* :github:`6983` - top level CMakeList.txt test if LINKER_SCRIPT points to existing file 546* :github:`6984` - include pthread in app -> compilation failed 547* :github:`6988` - test checksum_offload fail on native_posix 548* :github:`6992` - extern object declarations interfere with kernel object detection 549* :github:`6996` - buffer management issues with k_pipe syscalls 550* :github:`6997` - buffer management issues with k_msgq syscalls 551* :github:`7009` - LSM6DSL: Isse with spi_config 552* :github:`7020` - tests/kernel/smp: Test fails, scheduler schedules the threads on only one core 553* :github:`7022` - HTTP Server crashes on native posix 554* :github:`7026` - i2c based sensor test cases fails on arc core 555* :github:`7032` - Have Sphinx search display txt not ReST as results 556* :github:`7033` - tests:fp_sharing: Test takes almost an hour on frdm_k64f 557* :github:`7044` - Boot banner not correct for application builds outside of zephyr 558* :github:`7050` - tests: sys_mem_pool: Bus fault occurs on ARM boards (frdmk64f and nrf52840_pca10056) 559* :github:`7055` - tests: fatal: Stack protection fatal test fails on ARC core 560* :github:`7067` - scripts: extract_dts_includes: fails on multiple includes in yaml bindings file 561* :github:`7070` - lwm2m: possible buffer overflow in LwM2M engine debug output 562* :github:`7073` - Full persistent storage support for Bluetooth 563* :github:`7075` - No such file or directory: CMAKE_READELF: 'CMAKE_READELF-NOTFOUND' 564* :github:`7076` - NRF52840: I2C Sensor (SHT3XD) driver issue 565* :github:`7078` - [Coverity CID: 185286] Error handling issues in /subsys/settings/src/settings_store.c 566* :github:`7079` - [Coverity CID: 185285] Error handling issues in /subsys/settings/src/settings_fcb.c 567* :github:`7080` - [Coverity CID: 185284] Error handling issues in /subsys/settings/src/settings_fcb.c 568* :github:`7081` - [Coverity CID: 185283] Control flow issues in /subsys/fs/nffs_fs.c 569* :github:`7082` - [Coverity CID: 185282] Error handling issues in /subsys/settings/src/settings_init.c 570* :github:`7083` - [Coverity CID: 185281] Null pointer dereferences in /kernel/posix/mqueue.c 571* :github:`7084` - [Coverity CID: 185280] Error handling issues in /tests/posix/pthread_rwlock/src/posix_rwlock.c 572* :github:`7085` - [Coverity CID: 185279] Resource leaks in /tests/net/socket/getaddrinfo/src/main.c 573* :github:`7086` - [Coverity CID: 185278] Null pointer dereferences in /samples/net/coap_server/src/coap-server.c 574* :github:`7087` - [Coverity CID: 185277] Null pointer dereferences in /samples/net/coap_server/src/coap-server.c 575* :github:`7088` - [Coverity CID: 185276] Uninitialized variables in /tests/posix/posix_checks/src/posix_checks.c 576* :github:`7089` - [Coverity CID: 185275] Integer handling issues in /kernel/posix/pthread_common.c 577* :github:`7090` - [Coverity CID: 185274] Error handling issues in /subsys/settings/src/settings_store.c 578* :github:`7091` - [Coverity CID: 185273] Resource leaks in /tests/net/socket/getaddrinfo/src/main.c 579* :github:`7097` - doc build kconfig warning for XOROSHIRO_RANDOM_GENERATOR 580* :github:`7103` - Unpatched upstream vulnerabilities in mbedTLS 581* :github:`7107` - Crash while running echo_server with openthread 582* :github:`7115` - doc/subsystems/settings/settings.rst references non-existing variables 583* :github:`7127` - STM32 ethernet driver crashes without connected cable 584* :github:`7128` - msp uninitialized on reset leading to usage fault for non-XIP targets 585* :github:`7137` - I2C Driver does not compile for nrf5 boards 586* :github:`7144` - SDK Openocd stm32f4discovery.cfg is incorrect for new versions of the STM32F407G-DISC1 587* :github:`7146` - scripts/sanitycheck will delete any folder given to --outdir argument 588* :github:`7155` - DTS: qemu_x86.dts: Warning (unit_address_format): Node /flash@00001000 unit name should not have leading 0s 589* :github:`7159` - Kconfig.defconfig is undocumented and unclear 590* :github:`7170` - zassert: Confusing rules and actual usage for messages in zassert_*() calls 591* :github:`7172` - Mcr20a initialization crashes with frdm_k64f board 592* :github:`7184` - List of supported boards is incorrect when $BOARD_ROOT is set by user. 593* :github:`7186` - settings_load() never returns when called 594* :github:`7198` - sanitycheck issue w/ztest 595* :github:`7200` - Commit 'tests: kernel: mem_protect: tests for userspace mode' breaks scripts/sanitycheck 596* :github:`7207` - cmake fails when zephyr is used as submodule 597* :github:`7208` - ztest_test_fail() not failing? 598* :github:`7219` - printk output with gdbserver? 599* :github:`7227` - /subsys/storage/flash_map/flash_map_default.c missing declarations. 600* :github:`7236` - Sample Http_Client is deprecated 601* :github:`7245` - EMSK 7d: can't build after 60ec8be309cb84d72c5fc61330abc968eb62333e 602* :github:`7246` - esp32 fails to build with xtensa-esp32-elf-gcc: error: unrecognized command line option '-no-pie' 603* :github:`7248` - i2c: Seems issue in dts 604* :github:`7249` - Arduino 101 / ARC: tests/kernel/fifo/fifo_api/ fails after 3d9ba10b5c903265d870a9f24065340d93e7d465 605* :github:`7254` - [Coverity CID :185402] Code maintainability issues in /drivers/spi/spi_dw.c 606* :github:`7255` - [Coverity CID :185401] Integer handling issues in /drivers/spi/spi_mcux_dspi.c 607* :github:`7256` - [Coverity CID :185400] Null pointer dereferences in /drivers/spi/spi_dw.c 608* :github:`7257` - [Coverity CID :185399] Integer handling issues in /subsys/usb/usb_device.c 609* :github:`7258` - [Coverity CID :185398] Memory - corruptions in /samples/net/mbedtls_sslclient/src/mini_client.c 610* :github:`7259` - [Coverity CID :185397] Null pointer dereferences in /tests/net/ipv6_fragment/src/main.c 611* :github:`7260` - [Coverity CID :185395] Memory - corruptions in /samples/net/mbedtls_sslclient/src/mini_client.c 612* :github:`7261` - [Coverity CID :185394] Null pointer dereferences in /subsys/net/ip/l2/ethernet/arp.c 613* :github:`7262` - [Coverity CID :185393] Memory - illegal accesses in /drivers/interrupt_controller/plic_fe310.c 614* :github:`7263` - [Coverity CID :185392] Null pointer dereferences in /drivers/spi/spi_dw.c 615* :github:`7264` - [Coverity CID :185391] Incorrect expression in /tests/lib/rbtree/src/main.c 616* :github:`7266` - Zephyr's C Kconfig tools do not support <, <=, >, >=, due to being too old 617* :github:`7269` - /samples/net/http_client: Error using https in http_cliente sample 618* :github:`7280` - if we have two flash on board? 619* :github:`7285` - buffer management issues with k_stack syscalls 620* :github:`7287` - Git describe broken with older versions of Git 621* :github:`7308` - qemu_xtensa cannot be debugged with SDK 622* :github:`7309` - minnowboard DTS is not configured correctly 623* :github:`7311` - FCB: CRC write size in append_finish doesn't honor flash min write size 624* :github:`7327` - Interrupt stack is not initialized for Xtensa target 625* :github:`7329` - is there has anyone who having portting stm32f2? 626* :github:`7336` - USB DFU: this area can not be overwritten 627* :github:`7340` - DISCUSS: usb_device.c: If condition judgment 628* :github:`7342` - samples: net/dns_resolve does not build when activating dhcp 629* :github:`7349` - Add STM32L0 USB support 630* :github:`7364` - kernel crash: USB ECM: echo_server 631* :github:`7365` - net: Regression in multiple client connection handling with samples/net/sockets/dumb_http_server (QEMU/SLIP) 632* :github:`7377` - net: Regression in multiple client connection handling with samples/net/sockets/dumb_http_server (frdm_k64f/Ethernet) 633* :github:`7378` - TOCTOU in spi_transceive syscall handler 634* :github:`7379` - TOCTOU in adc_read() handler 635* :github:`7380` - dma_stm32f4x possible access out of bounds in start/stop handlers 636* :github:`7388` - nxp_mpu: suspicious ENDADDR_ROUND() macro 637* :github:`7389` - t1_adc108s102 buffer overflow due to chan->buf_idx growth 638* :github:`7412` - Mismatch between 'uint32_t' (and 'off_t') definitions in minimal libc and newlib 639* :github:`7434` - bluetooth: host: sample applications can't set BT address w/o using an FS 640* :github:`7437` - Zephyr's mailing list archives were hard to find 641* :github:`7442` - menuconfig should perform fuzzy string matching for symbols 642* :github:`7447` - net tests: valgrind detected issues 643* :github:`7452` - nRF52, NXP kinetis, ARM Beetle and STM MPU option appear for every MPU-equipped device 644* :github:`7453` - Bluetooth mesh message context API needs to expose DST address of RX messages 645* :github:`7459` - net: Multiple inconsistent settings to configure TIME_WAIT delay in the IP stack 646* :github:`7460` - Unable to view PR #6391 647* :github:`7475` - LwM2M: UDP local port setting not obeyed, random port doesn't work 648* :github:`7478` - tests: valgrind detected issues 649* :github:`7480` - pthread_attr_init( ) does not conform to POSIX specification 650* :github:`7482` - [Coverity CID :185523] Out-of-bounds read in lsm6dsl driver 651* :github:`7495` - cmake: extensions: ToolchainCapabilityDatabase.cmake parse error in shippable 652* :github:`7500` - DHCP: when CONFIG_NET_APP_MY_IPV4_ADDR is IP stack needs to rebind on DHCP acquire 653* :github:`7508` - [Coverity CID :185523] Memory - illegal accesses in /drivers/sensor/lsm6dsl/lsm6dsl.c 654* :github:`7511` - [Coverity CID :185391] Incorrect expression in /tests/lib/rbtree/src/main.c 655* :github:`7519` - Verify CODEOWNERS (not) including subfolders is intended 656* :github:`7521` - Website: git clone instructions refer to old (v1.10.0) tag 657* :github:`7536` - tests: kernel.timer: fails on riscv32 658* :github:`7541` - arm: struct k_thread->entry is overwritten once the thread is scheduled 659* :github:`7565` - zephyr_library_ifdef has unexpected behaviour 660* :github:`7569` - test: posix/pthread_rwlock 661* :github:`7608` - ARC objdump crash when creating zephyr.lst for one test 662* :github:`7610` - tests/lib/c_lib fails on native_posix on FC28 663* :github:`7613` - OTA:an issue about OTA/mcumgr 664* :github:`7644` - k_mem_slab_free triggers rescheduling even when no threads are pending 665* :github:`7651` - nRF5x console broken 666* :github:`7655` - Invalid argument passed to k_sleep 667* :github:`7656` - Invalid argument passed to k_sleep 668* :github:`7657` - Invalid argument passed to k_sleep 669* :github:`7661` - LwM2M error: invisible error during registration 670* :github:`7663` - Sample ipsp: bluetooth: not functional on disco_l475_iot1 671* :github:`7666` - NVS API documentation is missing 672* :github:`7671` - NVS broken for write-align > 4 673* :github:`7673` - Eliminate recursive make in OpenAMP integration 674* :github:`7676` - buildsystem: 'make flash' failed 675* :github:`7677` - mcuboot-master imgtool.py sign error 676* :github:`7692` - Kernel tests failing at runtime on frdm_k64f 677* :github:`7694` - Have RTC binding for QMSI utilize base rtc.yaml 678* :github:`7698` - Kernel tests failing at runtime on frdm_kw41z 679* :github:`7699` - drivers: i2s: intel_s1000: I2S BCLK cannot be a fraction of reference clock 680* :github:`7704` - nrf52_pca10040:tests/bluetooth/init/test_controller_dbg fails build with CONFIG_USERSPACE=y 681* :github:`7709` - native_posix: hello_world fails to link on Fedora 28 682* :github:`7712` - [Coverity CID :186063] Null pointer dereferences in /subsys/disk/disk_access.c 683* :github:`7713` - [Coverity CID :186062] Error handling issues in /samples/net/sockets/big_http_download/src/big_http_download.c 684* :github:`7714` - [Coverity CID :186061] Memory - corruptions in /drivers/usb/device/usb_dc_kinetis.c 685* :github:`7715` - [Coverity CID :186059] Memory - illegal accesses in /drivers/usb/device/usb_dc_kinetis.c 686* :github:`7716` - [Coverity CID :186058] Null pointer dereferences in /tests/kernel/fifo/fifo_timeout/src/main.c 687* :github:`7717` - [Coverity CID :186057] Memory - corruptions in /samples/net/rpl_border_router/src/coap.c 688* :github:`7718` - [Coverity CID :186056] Null pointer dereferences in /subsys/disk/disk_access.c 689* :github:`7719` - [Coverity CID :186055] Memory - corruptions in /drivers/usb/device/usb_dc_kinetis.c 690* :github:`7720` - [Coverity CID :186053] Code maintainability issues in /samples/net/rpl_border_router/src/http.c 691* :github:`7721` - [Coverity CID :186051] Memory - illegal accesses in /drivers/usb/device/usb_dc_kinetis.c 692* :github:`7722` - [Coverity CID :186049] Memory - corruptions in /samples/subsys/mgmt/mcumgr/smp_svr/src/main.c 693* :github:`7723` - [Coverity CID :186048] Memory - illegal accesses in /drivers/usb/device/usb_dc_kinetis.c 694* :github:`7724` - [Coverity CID :186047] Null pointer dereferences in /tests/net/arp/src/main.c 695* :github:`7725` - [Coverity CID :186046] Memory - corruptions in /drivers/usb/device/usb_dc_kinetis.c 696* :github:`7726` - [Coverity CID :186045] Null pointer dereferences in /subsys/disk/disk_access.c 697* :github:`7727` - [Coverity CID :186044] Memory - illegal accesses in /drivers/usb/device/usb_dc_kinetis.c 698* :github:`7728` - [Coverity CID :186043] Incorrect expression in /tests/posix/fs/src/test_fs_dir.c 699* :github:`7729` - [Coverity CID :186042] Program hangs in /tests/posix/mutex/src/posix_mutex.c 700* :github:`7730` - [Coverity CID :186041] Memory - corruptions in /samples/net/rpl_border_router/src/http.c 701* :github:`7731` - [Coverity CID :186040] Resource leaks in /tests/posix/fs/src/test_fs_dir.c 702* :github:`7732` - [Coverity CID :186039] Control flow issues in /subsys/net/ip/connection.c 703* :github:`7733` - [Coverity CID :186037] Memory - corruptions in /lib/posix/fs.c 704* :github:`7734` - [Coverity CID :186036] Memory - corruptions in /drivers/usb/device/usb_dc_kinetis.c 705* :github:`7735` - [Coverity CID :186035] Incorrect expression in /drivers/ipm/ipm_mcux.c 706* :github:`7736` - [Coverity CID :186034] Memory - corruptions in /tests/net/udp/src/main.c 707* :github:`7737` - [Coverity CID :186033] Control flow issues in /subsys/mgmt/smp.c 708* :github:`7738` - [Coverity CID :186032] Memory - illegal accesses in /drivers/usb/device/usb_dc_kinetis.c 709* :github:`7739` - [Coverity CID :186030] Error handling issues in /subsys/bluetooth/host/settings.c 710* :github:`7740` - [Coverity CID :186029] Null pointer dereferences in /subsys/disk/disk_access.c 711* :github:`7741` - [Coverity CID :186028] Incorrect expression in /drivers/gpio/gpio_imx.c 712* :github:`7742` - [Coverity CID :186027] Null pointer dereferences in /subsys/disk/disk_access.c 713* :github:`7753` - security: ARM does not scrub registers when returning from system calls 714* :github:`7754` - tests/kernel/threads/lifecycle/thread_init register corruption on ARM with user mode enabled 715* :github:`7755` - getchar sample not working on nRF5x 716* :github:`7761` - ARM: failed syscalls do not report site of faulting syscall 717* :github:`7766` - tests/subsys/fs/fat_fs_api - fat_fs_basic_test hangs in fatfs_mount 718* :github:`7776` - possible unaligned memory access to struct _k_object's perms 719* :github:`7780` - Using latest Openthread in Zephyr 720* :github:`7782` - tests/kernel/mem_protect/stack_random hangs without any console output on frdm_k64f 721* :github:`7787` - tests: kernel: smp fatal exception observed on ESP32 722* :github:`7789` - Reset sequence broken on nRF5x chips 723* :github:`7793` - samples\sensor: bme280 and tmp112 hangs without any console output on quark_se_c1000_devboard 724* :github:`7795` - STM32 related Kconfig symbols don't exist anymore or aren't referenced anywhere 725* :github:`7797` - subsys/net/ip/Kconfig references NET_L2_OFFLOAD but that doesn't exist 726* :github:`7798` - nonexistent Kconfig symbol in defconfig arch/x86/soc/intel_quark/quark_x1000/Kconfig.defconfig.series 727* :github:`7799` - nonexistent Kconfig symbol in defconfig boards/x86/quark_se_c1000_devboard/Kconfig.defconfig 728* :github:`7802` - Add RTC support for all NXP MCUX platforms 729* :github:`7804` - samples/sensor/apds9960 fails with assertion "Fatal fault in essential thread" on quark_se_c1000_ss_devboard 730* :github:`7811` - CAVS Interrupt controller - using undefined Kconfig symbols 731* :github:`7812` - tests: Crypto tests fail on nrf52 boards after enabling user mode 732* :github:`7814` - networking - Cleanup undefined but referenced Kconfig 733* :github:`7815` - bluetooth - cleanup undefined Kconfig symbols 734* :github:`7819` - build breakage due to enabling USER_SPACE by default 735* :github:`7821` - net: Loopback broken: Packets sent locally to loopback address are now dropped 736* :github:`7858` - Test for k_thread_foreach() is failing on some boards 737* :github:`7862` - rpl_border_router sample bus_faults on frdm_k64f 738* :github:`7873` - cc2650_sensortag_defconfig assigned missing Kconfig symbols (now dead code) 739* :github:`7877` - tests: kernel/mem_protect/mem_protect is failed on nucleo_f429zi/disco_l475_iot1 740* :github:`7882` - tests/dfu/mcuboot.test_bank_erase fails on nrf52840_pca10056 741* :github:`7885` - em_starterkit_em7d_v22 failing multiple tests in user mode 742* :github:`7891` - tests/posix/timer.test_timer fails on nrf51_pca10028 743* :github:`7907` - tests/benchmarks/latency_measure fails on sam_e70_xplained 744* :github:`7927` - West runner command doesn't work for em-starterkit 745* :github:`7931` - Bluetooth controller nrf52 - connection event status 746* :github:`7933` - drivers: can: stm32_can: bitrate ignored 747* :github:`7942` - tests: benchmarks: build fail in arm/core/fault.c for frdm_k64f in footprint/min 748* :github:`7954` - make flash failing for altera_max10 749* :github:`7959` - shell: backspace doesn't work in minicom 750* :github:`7972` - Bluetooth: Mesh: adv bearer does not use correct interval 751* :github:`7974` - extract_dts_includes: Binding merge warning should be enhanced 752* :github:`7979` - drivers: dma: dma_cavs: DMA driver does not support per-channel callbacks 753* :github:`7989` - eth: ping: can't ping others from zephyr console 754* :github:`8005` - FRDM-K64F boot hang w/ mcuboot + lwm2m client 755* :github:`8009` - POSIX clock_gettime() is discontinuous 756* :github:`8015` - Driver:spi_flash_w25qxxdv.c init mistake and can not be erased 757* :github:`8032` - _SysFatalErrorHandler not working properly for arc on quark_se_c1000_ss_devboard 758* :github:`8033` - tests/crypto/mbedtls/ results in exception on frdm_k64f 759* :github:`8038` - tests/subsys/settings/fcb system.settings.fcb fails on nrf52 760* :github:`8049` - kernel: scheduler tries to make polling threads active 761* :github:`8054` - Ethernet initialization is unreliable and gets stuck on frdm-k64f 762* :github:`8062` - [Coverity CID :186196] Error handling issues in /samples/sensor/mcp9808/src/main.c 763* :github:`8063` - [Coverity CID :186190] Null pointer dereferences in /tests/kernel/fifo/fifo_timeout/src/main.c 764* :github:`8064` - arm: multiple MemManage status flags may be set simultaneously 765* :github:`8065` - tests/subsys/fs/fat_fs_api - test_fat_file and test_fat_dir results into Assertion failure on Arduino_101 due to spi_flash changes 766* :github:`8069` - mem_slab/mslab_threadsafe testcase fails in CI sporadically 767* :github:`8070` - table broken in S1000 documentation 768* :github:`8073` - Zero Latency IRQ masked by interrupt locking 769* :github:`8083` - Bluetooth ATT trying to access invalid pointer after disconnect 770* :github:`8085` - tests/subsys/logging/logger-hook crashes on sam_e70_explained 771* :github:`8086` - tests/net/ieee802154/crypto fails on Quark SE / x86 772* :github:`8087` - tests/misc/test_build fails to build on esp32 773* :github:`8088` - tests/kernel/xip fails on QEMU riscv32 with no output 774* :github:`8090` - tests/sched/schedule_api fails to build on EMSK7d 775* :github:`8092` - tests/kernel/fatal crashes on Quark SE / ARC 776* :github:`8093` - tests/kernel/common fails to build on xtensa / ESP32 777* :github:`8094` - tests/drivers/watchdog/wdt_basic_api fails to build on esp32 / xtensa 778* :github:`8096` - tests/drivers/watchdog/wdt_basic_api fails on Quark SE / ARC with no output 779* :github:`8098` - tests/drivers/rtc/rtc_basic_api fails on Quark SE / x86 780* :github:`8099` - tests/drivers/rtc/rtc_basic_api assertion failure on Arduino 101 / ARC 781* :github:`8111` - kconfiglib warning "quotes recommended around default value for string symbol SOC_SERIES" 782* :github:`8117` - tests/kernel/errno crashes on minnowboard 783* :github:`8118` - x86 may expose private kernel data to user mode 784* :github:`8129` - scheduler: in update_cache() thread from next_up() and _current are the same 785* :github:`8132` - stm3210c_eval.dts_compiled: Warning 786* :github:`8142` - GPIO API not shown on docs.zephyrproject.org 787* :github:`8145` - samples/subsys/usb/dfu: Build failure, Reference to non-existent node or label "slot0_partition" 788* :github:`8150` - Doc: Update Zephyr security overview 789* :github:`8171` - Tests failing with a stacking error on frdm_k64f 790* :github:`8172` - Networking tests failing with an assertion on frdm_k64f 791* :github:`8180` - objcopy bug 792* :github:`8182` - Problem with obtaining hop_limit from a received packet 793* :github:`8189` - lwm2m: Quickly running out of resources when using observe 794* :github:`8192` - MPU Fault on some platforms after THREAD_MONITOR "fix" 795* :github:`8193` - STM32 config BUILD_OUTPUT_HEX fail 796* :github:`8198` - Tests: fifo_timeout fails on nrf51_pca10028 797* :github:`8200` - Tests: arm_irq_vector_table: Assertion failure on nrf52840_pca10056 798* :github:`8202` - question: is the irq_lock is necessary in console_putchar 799* :github:`8213` - Failed test: usb.device.dfu.bank_erase 800* :github:`8214` - Failed test: kernel.threads.customdata_get_set_coop 801* :github:`8222` - tests/drivers/watchdog/wdt_basic_api crashes on multiple platforms 802* :github:`8232` - Failed test: kernel.memory_protection.create_new_essential_thread_from_user 803* :github:`8250` - UDP socket may lose data 804* :github:`8274` - Make flash doesn't work on nrf51_pca10028 805* :github:`8275` - when zephyr can support popular IDE develop? 806* :github:`8280` - [Coverity CID :186491] Memory - corruptions in /lib/posix/fs.c 807* :github:`8292` - Rework ARC exception stack 808* :github:`8298` - Failed test: kernel.alert.isr_alert_consumed (in tests/kernel/alert/) on quark_se_c1000_ss 809* :github:`8299` - Failed test: kernel.memory_pool.mpool_alloc_free_isr (in tests/kernel/mem_pool/mem_pool_api) 810* :github:`8302` - Failed test: peripheral.adc.adc on quark_se 811* :github:`8311` - tests/benchmarks/sys_kernel fails on frdm_k64f, sam_e70 812