Home
last modified time | relevance | path

Searched +full:stale +full:- +full:issue +full:- +full:message (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/.github/workflows/
Dstale_issue.yml1 name: "Close stale pull requests/issues"
4 - cron: "16 00 * * *"
7 stale:
8 name: Find Stale issues and PRs
9 runs-on: ubuntu-22.04
10 if: github.repository == 'zephyrproject-rtos/zephyr'
12 - uses: actions/stale@v9
14 stale-pr-message: 'This pull request has been marked as stale because it has been open (more
15 than) 60 days with no activity. Remove the stale label or add a comment saying that you
17 closed in 14 days. Note, that you can always re-open a closed pull request at any time.'
[all …]
/Zephyr-latest/doc/contribute/
Dcontributor_expectations.rst1 .. _contributor-expectations:
10 - Reviewed more quickly and reviewed more thoroughly. It's easier for reviewers
14 - Less wasted work if reviewers or maintainers reject the direction of the
17 - Easier to rebase and merge. Smaller PRs are less likely to conflict with other
20 - Easier to revert if the PR breaks functionality.
32 - Smaller PRs should encompass one self-contained logical change.
34 - When adding a new large feature or API, the PR should address only one part of
38 - PRs should include tests or samples under the following conditions:
40 - Adding new features or functionality.
42 - Modifying a feature, especially for API behavior contract changes.
[all …]
/Zephyr-latest/subsys/net/ip/
Dipv6_nbr.c8 * SPDX-License-Identifier: Apache-2.0
61 /* Global stale counter, whenever ipv6 neighbor enters into
62 * stale state, stale counter is incremented by one.
64 * is full, oldest (oldest stale counter) neighbor in stale
121 return "stale"; in net_ipv6_nbr_state2str()
141 if (new_state == net_ipv6_nbr_data(nbr)->state || in ipv6_nbr_set_state()
142 net_ipv6_nbr_data(nbr)->state == NET_IPV6_NBR_STATE_STATIC) { in ipv6_nbr_set_state()
146 NET_DBG("nbr %p %s -> %s", nbr, in ipv6_nbr_set_state()
147 net_ipv6_nbr_state2str(net_ipv6_nbr_data(nbr)->state), in ipv6_nbr_set_state()
150 net_ipv6_nbr_data(nbr)->state = new_state; in ipv6_nbr_set_state()
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-3.2.rst13 * Added support for :ref:`bin-blobs` (also see :ref:`west-blobs`).
15 * Converted all supported boards from ``pinmux`` to :ref:`pinctrl-guide`.
31 * CVE-2022-2993: Under embargo until 2022-11-03
33 * CVE-2022-2741: Under embargo until 2022-10-14
56 This definition can be used by third-party code to compile code conditional
58 Therefore, any third-party code integrated using the Zephyr build system will
91 changed from ``-ENETDOWN`` to ``-ENETUNREACH``. A return value of ``-ENETDOWN`` now indicates
129 * Removed support for configuring the CAN-FD maximum DLC value via Kconfig
156 valid for specific bindings to specify like :dtcompatible:`gpio-leds` and
157 :dtcompatible:`fixed-partitions`.
[all …]
Drelease-notes-3.3.rst14 * Introduced :ref:`USB-C <usbc_api>` device stack with PD (power delivery)
17 CMSIS-DSP as the default backend.
30 * CVE-2023-0359: Under embargo until 2023-04-20
32 * CVE-2023-0779: Under embargo until 2023-04-22
66 removed in favor of new :dtcompatible:`zephyr,flash-disk` devicetree binding.
71 * Starting from this release ``zephyr-`` prefixed tags won't be created
82 image states). Use of a truncated hash or non-sha256 hash will still work
88 registration function at boot-up. If applications register this then
93 application code, these will now automatically be registered at boot-up (this
129 This may cause out-of-tree scripts or commands to fail if they have relied
[all …]
Drelease-notes-2.0.rst12 * The kernel now supports both 32- and 64-bit architectures.
17 * We added support for :ref:`Point-to-Point Protocol (PPP) <ppp>`. PPP is a
20 * We added support for UpdateHub, an end-to-end solution for large scale
21 over-the-air device updates.
22 * We added support for ARM Cortex-R Architecture (Experimental).
32 * Fixes CVE-2019-9506: The Bluetooth BR/EDR specification up to and
35 negotiation. This allows practical brute-force attacks (aka "KNOB")
42 * New kernel API for per-thread disabling of Floating Point Services for
43 ARC, ARM Cortex-M, and x86 architectures.
45 * Additional support for compatibility with 64-bit architectures.
[all …]
/Zephyr-latest/drivers/modem/
Dhl7800.c4 * SPDX-License-Identifier: Apache-2.0
211 #define MDM_INVALID_SOCKET_ID -1
217 #define SIZE_WITHOUT_NUL(v) (sizeof(v) - SIZE_OF_NUL)
221 .cmd = cmd_, .cmd_len = (uint16_t)sizeof(cmd_) - 1, \
250 #define RSSI_UNKNOWN -999
295 /* The ? can be a + or - */
302 #define TIME_STRING_TO_TM_STRUCT_YEAR_OFFSET (2000 - 1900)
374 static const char EOF_PATTERN[] = "--EOF--Pattern--";
608 sock->allocated = true; in alloc_stale_socket()
619 sock->allocated = false; in free_stale_socket()
[all …]