Home
last modified time | relevance | path

Searched +full:unterminated +full:- +full:ok (Results 1 – 5 of 5) sorted by relevance

/linux/Documentation/netlink/specs/
H A Dteam.yaml1 # SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)
5 protocol: genetlink-legacy
10 c-family-name: team-genl-name
11 c-version-name: team-genl-version
12 kernel-policy: global
13 uapi-header: linux/if_team.h
16 -
17 name: string-max-len
20 -
21 name: genl-change-event-mc-grp-name
[all …]
/linux/Documentation/core-api/
H A Dnetlink.rst1 .. SPDX-License-Identifier: BSD-3-Clause
13 ---------------
21 -------------
31 ---------------
44 ----------
51 ------------------------
54 them - make sure to report dump inconsistency with ``NLM_F_DUMP_INTR``.
65 -------
67 kernel-policy
71 operations of the family, defined for each operation individually - ``per-op``,
[all …]
/linux/scripts/dtc/
H A Dfdtget.c1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * Portions from U-Boot cmd_fdt.c (C) Copyright 2007
51 * @return 0 if ok, -1 if data does not match format
66 is_string = (disp->type) == 's' || in show_data()
67 (!disp->type && util_is_printable_string(data, len)); in show_data()
69 if (data[len - 1] != '\0') { in show_data()
70 fprintf(stderr, "Unterminated string\n"); in show_data()
71 return -1; in show_data()
73 for (s = data; s - data < len; s += strlen(s) + 1) { in show_data()
80 size = disp->size; in show_data()
[all …]
/linux/Documentation/userspace-api/netlink/
H A Dspecs.rst1 .. SPDX-License-Identifier: BSD-3-Clause
17 - the C uAPI header
18- documentation of the protocol as a ReST file - see :ref:`Documentation/networking/netlink_spec/i…
19 - policy tables for input attribute validation
20 - operation tables
25 See :doc:`intro-specs` for a practical starting guide.
28 ``((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)``
40 - ``genetlink`` - most streamlined, should be used by all new families
41 - ``genetlink-c`` - superset of ``genetlink`` with extra attributes allowing
45 - ``genetlink-legacy`` - Generic Netlink catch all schema supporting quirks of
[all …]
/linux/fs/proc/
H A Dtask_mmu.c1 // SPDX-License-Identifier: GPL-2.0
33 seq_put_decimal_ull_width(m, str, (val) << (PAGE_SHIFT-10), 8)
50 hiwater_vm = total_vm = mm->total_vm; in task_mem()
51 if (hiwater_vm < mm->hiwater_vm) in task_mem()
52 hiwater_vm = mm->hiwater_vm; in task_mem()
54 if (hiwater_rss < mm->hiwater_rss) in task_mem()
55 hiwater_rss = mm->hiwater_rss; in task_mem()
58 text = PAGE_ALIGN(mm->end_code) - (mm->start_code & PAGE_MASK); in task_mem()
59 text = min(text, mm->exec_vm << PAGE_SHIFT); in task_mem()
60 lib = (mm->exec_vm << PAGE_SHIFT) - text; in task_mem()
[all …]