Home
last modified time | relevance | path

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

12345678910>>...43

/linux/drivers/gpu/drm/ci/xfails/
H A Dvkms-none-flakes.txt1 # Board Name: vkms
2 # Bug Report: https://lore.kernel.org/dri-devel/61ed26af-062c-443c-9df2-d1ee319f3fb0@collabora.com/…
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-d1ee319f3fb0@collabora.com/…
11 # IGT Version: 1.28-g0df7b9b97
12 # Linux Version: 6.9.0-rc7
13 kms_flip@basic-flip-vs-wf_vblank
[all …]
/linux/scripts/
H A 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 …]
H A 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 …]
H A 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 …]
H A 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 …]
H A 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/tools/tracing/rtla/
H A 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-confi
[all...]
/linux/drivers/mtd/parsers/
H A 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/fs/jffs2/
H A Dsummary.c2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-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 …]
H A Dsummary.h2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-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 …]
H A 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/tools/testing/selftests/vDSO/
H A 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/net/9p/
H A Dclient.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
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/Documentation/userspace-api/media/v4l/
H A 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/fs/ocfs2/
H A 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/fs/affs/
H A 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/Documentation/userspace-api/media/mediactl/
H A 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/tools/perf/
H A 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[ member
38 char name[0]; global() member
61 get_man_viewer_info(const char * name) get_man_viewer_info() argument
77 int version; check_emacsclient_version() local
191 add_man_viewer(const char * name) add_man_viewer() argument
202 supported_man_viewer(const char * name,size_t len) supported_man_viewer() argument
209 do_add_man_viewer_info(const char * name,size_t len,const char * value) do_add_man_viewer_info() argument
221 unsupported_man_viewer(const char * name,const char * var) unsupported_man_viewer() argument
227 add_man_viewer_path(const char * name,size_t len,const char * value) add_man_viewer_path() argument
239 add_man_viewer_cmd(const char * name,size_t len,const char * value) add_man_viewer_cmd() argument
253 const char *name = var + 4; add_man_viewer_info() local
347 exec_viewer(const char * name,const char * page) exec_viewer() argument
[all...]
/linux/arch/arm/boot/dts/nvidia/
H A Dtegra30-cardhu.dtsi1 // SPDX-License-Identifier: GPL-2.0
2 #include <dt-bindings/input/input.h>
3 #include <dt-bindings/thermal/thermal.h>
5 #include "tegra30-cpu-opp.dtsi"
6 #include "tegra30-cpu-opp-microvolt.dtsi"
9 * This file contains common DT entry for all fab version of Cardhu.
10 * There is multiple fab version of Cardhu starting from A01 to A07.
11 * Cardhu fab version A01 and A03 are not supported. Cardhu fab version
13 * Cardhu fab version A04. The Cardhu fab version A05, A06, A07 are
14 * compatible with fab version A04. Based on Cardhu fab version, the
[all …]
/linux/tools/perf/pmu-events/
H A 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 …]
/linux/fs/9p/
H A Dcache.c1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
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/sound/firewire/tascam/
H A Dtascam.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * tascam.c - a part of driver for TASCAM FireWire series
5 * Copyright (c) 2015 Takashi Sakamoto
11 MODULE_AUTHOR("Takashi Sakamoto <o-takashi@sakamocchi.jp>");
16 .name = "FW-1884",
25 .name = "FW-1082",
34 .name = "FW-1804",
46 struct fw_device *fw_dev = fw_parent_device(tscm->unit); in identify_model()
47 const u32 *config_rom = fw_dev->config_rom; in identify_model()
50 u8 c; in identify_model() local
[all …]
/linux/drivers/soc/qcom/
H A Dwcnss_ctrl.c1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016, Linaro Ltd.
4 * Copyright (c) 2015, Sony Mobile Communications Inc.
27 * struct wcnss_ctrl - driver context
64 * struct wcnss_msg_hdr - common packet header for requests and responses
74 * struct wcnss_version_resp - version request response
80 u8 version; member
85 * struct wcnss_download_nv_req - firmware fragment request
101 * struct wcnss_download_nv_resp - firmware download response
111 * wcnss_ctrl_smd_callback() - handler from SMD responses
[all …]
/linux/Documentation/userspace-api/netlink/
H A Dgenetlink-legacy.rst1 .. SPDX-License-Identifier: BSD-3-Clause
9 the ``genetlink-legacy`` protocol level.
15 -------
19 version subsection
22 Generic Netlink family version, default is 1.
24 ``version`` has historically been used to introduce family changes
26 are generally not allowed ``version`` is very rarely used.
29 --------------------
31 New Netlink families should use ``multi-attr`` to define arrays.
35 For reference the ``multi-attr`` array may look like this::
[all …]
/linux/drivers/md/bcache/
H A Dfeatures.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
28 ((sb)->feature_compat & (mask))
30 ((sb)->feature_ro_compat & (mask))
32 ((sb)->feature_incompat & (mask))
34 #define BCH_FEATURE_COMPAT_FUNCS(name, flagname) \ argument
35 static inline int bch_has_feature_##name(struct cache_sb *sb) \
37 if (sb->version < BCACHE_SB_VERSION_CDEV_WITH_FEATURES) \
39 return (((sb)->feature_compat & \
42 static inline void bch_set_feature_##name(struct cache_sb *sb) \
44 (sb)->feature_compat |= \
[all …]

12345678910>>...43