Home
last modified time | relevance | path

Searched +full:c +full:- +full:version +full:- +full:name (Results 1 – 25 of 1062) sorted by relevance

12345678910>>...43

/linux-6.14.4/drivers/gpu/drm/ci/xfails/
Dvkms-none-flakes.txt1 # Board Name: vkms
2 # Bug Report: https://lore.kernel.org/dri-devel/61ed26af-062c-443c-9df2-[email protected]/…
4 # IGT Version: 1.28-g0df7b9b97
5 # Linux Version: 6.9.0-rc7
6 kms_cursor_legacy@long-nonblocking-modeset-vs-cursor-atomic
8 # Board Name: vkms
9 # Bug Report: https://lore.kernel.org/dri-devel/61ed26af-062c-443c-9df2-[email protected]/…
11 # IGT Version: 1.28-g0df7b9b97
12 # Linux Version: 6.9.0-rc7
13 kms_flip@basic-flip-vs-wf_vblank
[all …]
/linux-6.14.4/scripts/
Dcc-version.sh2 # SPDX-License-Identifier: GPL-2.0
4 # Print the C compiler name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
7 set -e
9 # Print the C compiler name and some version components.
12 cat <<- EOF | "$@" -E -P -x c - 2>/dev/null
23 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
27 set -- $1
33 set -- $(get_c_compiler_info "$@")
35 name=$1
[all …]
Das-version.sh2 # SPDX-License-Identifier: GPL-2.0-only
4 # Print the assembler name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
6 # (If it is the integrated assembler, return 0 as the version, and
7 # skip the version check.)
9 set -e
11 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
15 set -- $1
21 echo $((10000 * $1 + 100 * ${2:-0} + ${3:-0}))
24 # Clang fails to handle -Wa,--version unless -fno-integrated-as is given.
[all …]
DKconfig.include1 # SPDX-License-Identifier: GPL-2.0-only
14 # $(if-success,<command>,<then>,<else>)
16 if-success = $(shell,{ $(1); } >/dev/null 2>&1 && echo "$(2)" || echo "$(3)")
20 success = $(if-success,$(1),y,n)
24 failure = $(if-success,$(1),n,y)
26 # $(cc-option,<flag>)
28 cc-option = $(success,trap "rm -rf .tmp_$$" EXIT; mkdir .tmp_$$; $(CC) -Werror $(CLANG_FLAGS) $(1)
30 # $(ld-option,<flag>)
32 ld-option = $(success,$(LD) -v $(1))
34 # $(as-instr,<instr>)
[all …]
Dld-version.sh2 # SPDX-License-Identifier: GPL-2.0
4 # Print the linker name and its version in a 5 or 6-digit form.
5 # Also, perform the minimum version check.
7 set -e
9 # Convert the version string x.y.z to a canonical 5 or 6-digit form.
13 set -- $1
19 echo $((10000 * $1 + 100 * ${2:-0} + ${3:-0}))
24 # Get the first line of the --version output.
27 set -- $(LC_ALL=C "$@" --version)
31 set -- $1
[all …]
Dver_linux1 #!/usr/bin/awk -f
2 # SPDX-License-Identifier: GPL-2.0
9 usage = "If some fields are empty or look unusual you may have an old version.\n"
13 system("uname -a")
16 vernum = "[0-9]+([.]?[0-9]+)+"
17 libc = "libc[.]so[.][0-9]+$"
18 libcpp = "(libg|stdc)[+]+[.]so([.][0-9]+)+$"
20 printversion("GNU C", version("gcc -dumpversion"))
21 printversion("GNU Make", version("make --version"))
22 printversion("Binutils", version("ld -v"))
[all …]
/linux-6.14.4/fs/unicode/
Dutf8-core.c1 /* SPDX-License-Identifier: GPL-2.0 */
14 if (utf8nlen(um, UTF8_NFDI, str->name, str->len) < 0) in utf8_validate()
15 return -1; in utf8_validate()
26 if (utf8ncursor(&cur1, um, UTF8_NFDI, s1->name, s1->len) < 0) in utf8_strncmp()
27 return -EINVAL; in utf8_strncmp()
29 if (utf8ncursor(&cur2, um, UTF8_NFDI, s2->name, s2->len) < 0) in utf8_strncmp()
30 return -EINVAL; in utf8_strncmp()
37 return -EINVAL; in utf8_strncmp()
52 if (utf8ncursor(&cur1, um, UTF8_NFDICF, s1->name, s1->len) < 0) in utf8_strncasecmp()
53 return -EINVAL; in utf8_strncasecmp()
[all …]
/linux-6.14.4/tools/tracing/rtla/
DMakefile.rtla1 # SPDX-License-Identifier: GPL-2.0-only
3 define allow-override
10 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
11 $(call allow-override,AR,$(CROSS_COMPILE)ar)
12 $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
13 $(call allow-override,PKG_CONFIG,pkg-config)
14 $(call allow-override,LD_SO_CONF_PATH,/etc/ld.so.conf.d/)
15 $(call allow-override,LDCONFIG,ldconfig)
18 FOPTS := -flto=auto -ffat-lto-objects -fexceptions -fstack-protector-strong \
19 -fasynchronous-unwind-tables -fstack-clash-protection
[all …]
/linux-6.14.4/drivers/mtd/parsers/
Dqcomsmempart.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2020, Linaro Ltd.
28 * struct smem_flash_pentry - SMEM Flash partition entry
29 * @name: Name of the partition
35 char name[SMEM_FLASH_PTABLE_NAME_SIZE]; member
42 * struct smem_flash_ptable - SMEM Flash partition table
45 * @version: Partition table version
52 __le32 version; member
66 char *name, *c; in parse_qcomsmem_part() local
69 && mtd->type == MTD_NORFLASH) { in parse_qcomsmem_part()
[all …]
/linux-6.14.4/fs/jffs2/
Dsummary.h2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <[email protected]-szeged.hu>,
5 * Zoltan Sogor <[email protected]-szeged.hu>,
6 * Patrik Kluba <[email protected]-szeged.hu>,
49 jint32_t version; /* inode version */ member
60 jint32_t version; /* dirent version */ member
62 uint8_t nsize; /* dirent name size */
64 uint8_t name[]; /* dirent name */ member
71 jint32_t version; /* version number */ member
104 jint32_t version; /* inode version */ member
[all …]
Dsummary.c2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <[email protected]-szeged.hu>,
5 * Zoltan Sogor <[email protected]-szeged.hu>,
6 * Patrik Kluba <[email protected]-szeged.hu>,
26 int jffs2_sum_init(struct jffs2_sb_info *c) in jffs2_sum_init() argument
28 uint32_t sum_size = min_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE); in jffs2_sum_init()
30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); in jffs2_sum_init()
32 if (!c->summary) { in jffs2_sum_init()
34 return -ENOMEM; in jffs2_sum_init()
37 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL); in jffs2_sum_init()
[all …]
Dwrite.c2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2001-2007 Red Hat, Inc.
23 int jffs2_do_new_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, in jffs2_do_new_inode() argument
30 return -ENOMEM; in jffs2_do_new_inode()
35 f->inocache = ic; in jffs2_do_new_inode()
36 f->inocache->pino_nlink = 1; /* Will be overwritten shortly for directories */ in jffs2_do_new_inode()
37 f->inocache->nodes = (struct jffs2_raw_node_ref *)f->inocache; in jffs2_do_new_inode()
38 f->inocache->state = INO_STATE_PRESENT; in jffs2_do_new_inode()
40 jffs2_add_ino_cache(c, f->inocache); in jffs2_do_new_inode()
41 jffs2_dbg(1, "%s(): Assigned ino# %d\n", __func__, f->inocache->ino); in jffs2_do_new_inode()
[all …]
/linux-6.14.4/scripts/gendwarfksyms/
Dtypes.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2024 Google LLC
31 if (entry->owned) in type_list_free()
32 free(entry->owned); in type_list_free()
47 entry->str = s; in type_list_append()
48 entry->owned = owned; in type_list_append()
49 list_add_tail(&entry->list, list); in type_list_append()
51 return strlen(entry->str); in type_list_append()
59 if (entry->str) in type_list_write()
60 checkp(fputs(entry->str, file)); in type_list_write()
[all …]
/linux-6.14.4/tools/testing/selftests/vDSO/
Dvdso_test_abi.c1 // SPDX-License-Identifier: GPL-2.0
3 * vdso_full_test.c: Sample code to test all the timers.
4 * Copyright (c) 2019 Arm Ltd.
7 * gcc -std=gnu99 vdso_full_test.c parse_vdso.c
26 static const char *version; variable
27 static const char **name; variable
53 (vdso_gettimeofday_t)vdso_sym(version, name[0]); in vdso_test_gettimeofday()
56 ksft_print_msg("Couldn't find %s\n", name[0]); in vdso_test_gettimeofday()
57 ksft_test_result_skip("%s\n", name[0]); in vdso_test_gettimeofday()
67 ksft_test_result_pass("%s\n", name[0]); in vdso_test_gettimeofday()
[all …]
/linux-6.14.4/drivers/rpmsg/
Dqcom_glink_ssr.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2014-2017, The Linux Foundation. All rights reserved.
4 * Copyright (c) 2017, Linaro Ltd.
15 * struct do_cleanup_msg - The data structure for an SSR do_cleanup message
16 * @version: The G-Link SSR protocol version
17 * @command: The G-Link SSR command - do_cleanup
19 * @name_len: Length of the name of the subsystem being restarted
20 * @name: G-Link edge name of the subsystem being restarted
23 __le32 version; member
27 char name[32]; member
[all …]
/linux-6.14.4/Documentation/userspace-api/media/mediactl/
Dmedia-ioc-device-info.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: MC
10 Name chapter
13 MEDIA_IOC_DEVICE_INFO - Query device information
18 .. c:macro:: MEDIA_IOC_DEVICE_INFO
26 File descriptor returned by :c:func:`open()`.
29 Pointer to struct :c:type:`media_device_info`.
36 a struct :c:type:`media_device_info`. The driver
40 .. c:type:: media_device_info
44 .. flat-table:: struct media_device_info
[all …]
/linux-6.14.4/Documentation/userspace-api/media/v4l/
Dvidioc-querycap.rst1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: V4L
10 Name chapter
13 VIDIOC_QUERYCAP - Query device capabilities
18 .. c:macro:: VIDIOC_QUERYCAP
26 File descriptor returned by :c:func:`open()`.
29 Pointer to struct :c:type:`v4l2_capability`.
37 pointer to a struct :c:type:`v4l2_capability` which is
41 .. c:type:: v4l2_capability
47 .. flat-table:: struct v4l2_capability
[all …]
/linux-6.14.4/net/9p/
Dclient.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2008 by Eric Van Hensbergen <[email protected]>
6 * Copyright (C) 2007 by Latchesar Ionkov <[email protected]>
39 * - a little lazy - parse all client options
54 {Opt_version, "version=%s"},
60 return clnt->proto_version == p9_proto_2000L; in p9_is_proto_dotl()
66 return clnt->proto_version == p9_proto_2000u; in p9_is_proto_dotu()
72 if (clnt->msize != DEFAULT_MSIZE) in p9_show_client_options()
73 seq_printf(m, ",msize=%u", clnt->msize); in p9_show_client_options()
74 seq_printf(m, ",trans=%s", clnt->trans_mod->name); in p9_show_client_options()
[all …]
/linux-6.14.4/fs/affs/
DChanges1 (Note: I consider version numbers as cheap. That means
7 -----------
9 - Doesn't work on the alpha. The only 64/32-bit
14 Alas, I've got no alpha to debug. :-(
16 - The partition checker (drivers/block/genhd.c)
20 - The feature to automatically make the fs clean
24 - When a file is truncated to a size that is not
29 Please direct bug reports to: zippel@linux-m68k.org
31 Version 3.20
32 ------------
[all …]
/linux-6.14.4/drivers/net/wireless/intel/iwlwifi/fw/
Derror-dump.h1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
3 * Copyright (C) 2014, 2018-2024 Intel Corporation
4 * Copyright (C) 2014-2015 Intel Mobile Communications GmbH
5 * Copyright (C) 2016-2017 Intel Deutschland GmbH
17 * enum iwl_fw_error_dump_type - types of data in the dump file
18 * @IWL_FW_ERROR_DUMP_CSR: Control Status Registers - from offset 0
25 * @IWL_FW_ERROR_DUMP_PRPH: range of periphery registers - there can be several
39 * for that reason is not in use in any other place in the Linux Wi-Fi
68 * struct iwl_fw_error_dump_data - data for one type
80 * struct iwl_dump_file_name_info - data for dump file name addition
[all …]
/linux-6.14.4/tools/perf/
Dbuiltin-help.c1 // SPDX-License-Identifier: GPL-2.0
3 * builtin-help.c
11 #include <subcmd/exec-cmd.h>
12 #include "common-cmds.h"
13 #include <subcmd/parse-options.h>
14 #include <subcmd/run-command.h>
32 char name[0]; member
38 char name[0]; member
61 static const char *get_man_viewer_info(const char *name) in get_man_viewer_info() argument
65 for (viewer = man_viewer_info_list; viewer; viewer = viewer->next) { in get_man_viewer_info()
[all …]
/linux-6.14.4/fs/ocfs2/
Dstack_user.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * stack_user.c
7 * Copyright (C) 2007 Oracle. All rights reserved.
30 * character followed by a two hex digit version number. Currently the
31 * only things supported is T01, for "Text-base version 0x01". Next, the
32 * client writes the version they would like to use, including the newline.
33 * Thus, the protocol tag is 'T01\n'. If the version tag written is
34 * unknown, -EINVAL is returned. Once the negotiation is complete, the
40 * SETN<space><8-char-hex-nodenum><newline>
49 * SETV<space><2-char-hex-major><space><2-char-hex-minor><newline>
[all …]
/linux-6.14.4/Documentation/userspace-api/netlink/
Dc-code-gen.rst1 .. SPDX-License-Identifier: BSD-3-Clause
4 Netlink spec C code generation
8 C code (uAPI, policies etc.). It also defines the additional properties
9 allowed in older families by the ``genetlink-c`` protocol level,
12 For brevity this document refers to ``name`` properties of various
14 of ``name`` in an attribute, and ``$family`` is the name of the
15 family (the global ``name`` property).
17 The upper case is used to denote literal values, e.g. ``$family-CMD``
22 and with dashes (``-``) replaced by underscores (``_``).
24 If the constructed name is a C keyword, an extra underscore is
[all …]
/linux-6.14.4/fs/9p/
Dcache.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2009 by Abhishek Kulkarni <[email protected]>
23 char *name, *p; in v9fs_cache_session_get_cookie() local
25 name = kasprintf(GFP_KERNEL, "9p,%s,%s", in v9fs_cache_session_get_cookie()
26 dev_name, v9ses->cachetag ?: v9ses->aname); in v9fs_cache_session_get_cookie()
27 if (!name) in v9fs_cache_session_get_cookie()
28 return -ENOMEM; in v9fs_cache_session_get_cookie()
30 for (p = name; *p; p++) in v9fs_cache_session_get_cookie()
34 vcookie = fscache_acquire_volume(name, NULL, NULL, 0); in v9fs_cache_session_get_cookie()
36 v9ses, vcookie, name); in v9fs_cache_session_get_cookie()
[all …]
/linux-6.14.4/tools/perf/pmu-events/
DREADME9 tree tools/perf/pmu-events/arch/foo.
11 - Regular files with '.json' extension in the name are assumed to be
14 - The CSV file that maps a specific CPU to its set of PMU events is to
17 - Directories are traversed, but all other files are ignored.
19 - To reduce JSON event duplication per architecture, platform JSONs may
26 such as Pipelining, Cache, Memory, Floating-point etc. All events for a topic
27 should be placed in a separate JSON file - where the file name identifies
28 the topic. Eg: "Floating-point.json".
33 $ ls tools/perf/pmu-events/arch/x86/silvermont
34 cache.json memory.json virtual-memory.json
[all …]

12345678910>>...43