/linux-6.6.21/tools/perf/util/ ! |
D | stat-display.c | 363 struct outstate *os = ctx; in new_line_std() local 365 os->newline = true; in new_line_std() 369 struct outstate *os) in __new_line_std_csv() argument 371 fputc('\n', os->fh); in __new_line_std_csv() 372 if (os->prefix) in __new_line_std_csv() 373 fputs(os->prefix, os->fh); in __new_line_std_csv() 374 aggr_printout(config, os->evsel, os->id, os->aggr_nr); in __new_line_std_csv() 377 static inline void __new_line_std(struct outstate *os) in __new_line_std() argument 379 fprintf(os->fh, " "); in __new_line_std() 383 struct outstate *os) in do_new_line_std() argument [all …]
|
/linux-6.6.21/scripts/ ! |
D | jobserver-exec | 10 import os, sys, errno 18 flags = os.environ['MAKEFLAGS'] 35 reader = os.open(path, os.O_RDONLY | os.O_NONBLOCK) 36 writer = os.open(path, os.O_WRONLY) 41 reader = os.open("/proc/self/fd/%d" % (reader), 42 os.O_RDONLY | os.O_NONBLOCK) 47 slot = os.read(reader, 8) 55 os.write(writer, jobs) 69 os.environ['PARALLELISM'] = '%d' % (claim) 75 os.write(writer, jobs)
|
D | diffconfig | 11 import sys, os 88 if "KBUILD_OUTPUT" in os.environ: 89 build_dir = os.environ["KBUILD_OUTPUT"]+"/" 138 devnull = os.open(os.devnull, os.O_WRONLY) 139 os.dup2(devnull, sys.stdout.fileno())
|
/linux-6.6.21/drivers/block/drbd/ ! |
D | drbd_state.c | 25 union drbd_state os; member 280 static void after_state_ch(struct drbd_device *device, union drbd_state os, 285 static enum drbd_state_rv is_valid_transition(union drbd_state os, union drbd_state ns); 286 static union drbd_state sanitize_state(struct drbd_device *device, union drbd_state os, 468 union drbd_state os, union drbd_state ns) in cl_wide_st_chg() argument 470 return (os.conn >= C_CONNECTED && ns.conn >= C_CONNECTED && in cl_wide_st_chg() 471 ((os.role != R_PRIMARY && ns.role == R_PRIMARY) || in cl_wide_st_chg() 472 (os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) || in cl_wide_st_chg() 473 (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S) || in cl_wide_st_chg() 474 (os.disk != D_FAILED && ns.disk == D_FAILED))) || in cl_wide_st_chg() [all …]
|
/linux-6.6.21/tools/testing/selftests/drivers/sdsi/ ! |
D | sdsi_test.py | 9 import os 38 return os.path.isfile(kmemleak) 59 assert os.path.isfile(folder + "guid") == True 60 assert os.path.isfile(folder + "provision_akc") == True 61 assert os.path.isfile(folder + "provision_cap") == True 62 assert os.path.isfile(folder + "state_certificate") == True 63 assert os.path.isfile(folder + "registers") == True 67 mode = os.stat(folder + "guid").st_mode & 0o777 69 mode = os.stat(folder + "registers").st_mode & 0o777 71 mode = os.stat(folder + "provision_akc").st_mode & 0o777 [all …]
|
/linux-6.6.21/drivers/net/fddi/skfp/ ! |
D | hwmtm.c | 263 if (!(smc->os.hwm.descr_p = (union s_fp_descr volatile *) in mac_drv_init() 273 smc->os.hwm.mbuf_pool.mb_start=(SMbuf *)(&smc->os.hwm.mbuf_pool.mb[0]) ; in mac_drv_init() 276 if (!(smc->os.hwm.mbuf_pool.mb_start = (SMbuf *) mac_drv_get_space(smc, in mac_drv_init() 356 ds = (struct s_smt_fp_txd volatile *) ((char *)smc->os.hwm.descr_p + in init_txd_ring() 393 ds = (struct s_smt_fp_rxd volatile *) smc->os.hwm.descr_p ; in init_rxd_ring() 426 mb = smc->os.hwm.mbuf_pool.mb_start ; in init_fddi_driver() 427 smc->os.hwm.mbuf_pool.mb_free = (SMbuf *)NULL ; in init_fddi_driver() 449 smc->os.hwm.llc_rx_pipe = smc->os.hwm.llc_rx_tail = (SMbuf *)NULL ; in init_fddi_driver() 450 smc->os.hwm.txd_tx_pipe = smc->os.hwm.txd_tx_tail = NULL ; in init_fddi_driver() 451 smc->os.hwm.pass_SMT = smc->os.hwm.pass_NSA = smc->os.hwm.pass_DB = 0 ; in init_fddi_driver() [all …]
|
D | skfddi.c | 264 smc->os.dev = dev; in skfp_init_one() 265 smc->os.bus_type = SK_BUS_TYPE_PCI; in skfp_init_one() 266 smc->os.pdev = *pdev; in skfp_init_one() 267 smc->os.QueueSkb = MAX_TX_QUEUE_LEN; in skfp_init_one() 268 smc->os.MaxFrameSize = MAX_FRAME_SIZE; in skfp_init_one() 269 smc->os.dev = dev; in skfp_init_one() 272 smc->os.ResetRequested = FALSE; in skfp_init_one() 273 skb_queue_head_init(&smc->os.SendSkbQueue); in skfp_init_one() 298 if (smc->os.SharedMemAddr) in skfp_init_one() 299 dma_free_coherent(&pdev->dev, smc->os.SharedMemSize, in skfp_init_one() [all …]
|
/linux-6.6.21/tools/testing/selftests/bpf/ ! |
D | test_bpftool_synctypes.py | 8 import os, sys 10 LINUX_ROOT = os.path.abspath(os.path.join(__file__, 11 os.pardir, os.pardir, os.pardir, os.pardir, os.pardir)) 12 BPFTOOL_DIR = os.getenv('BPFTOOL_DIR', 13 os.path.join(LINUX_ROOT, 'tools/bpf/bpftool')) 14 BPFTOOL_BASHCOMP_DIR = os.getenv('BPFTOOL_BASHCOMP_DIR', 15 os.path.join(BPFTOOL_DIR, 'bash-completion')) 16 BPFTOOL_DOC_DIR = os.getenv('BPFTOOL_DOC_DIR', 17 os.path.join(BPFTOOL_DIR, 'Documentation')) 18 INCLUDE_DIR = os.getenv('INCLUDE_DIR', [all …]
|
D | test_bpftool.py | 7 import os 14 cur_dir = os.path.dirname(os.path.realpath(__file__)) 15 bpftool_dir = os.path.abspath(os.path.join(cur_dir, "..", "..", "..", "..", 17 os.environ["PATH"] = bpftool_dir + ":/usr/local/sbin:" + os.environ["PATH"] 69 if os.getuid() != 0:
|
/linux-6.6.21/tools/testing/selftests/tc-testing/ ! |
D | tdc_config_local_template.py | 7 import os 9 ENVIR = os.environ.copy() 11 ENV_LD_LIBRARY_PATH = os.getenv('LD_LIBRARY_PATH', '') 12 ENV_OTHER_LIB = os.getenv('OTHER_LIB', '') 17 EXTRA_NAMES['SOME_BIN'] = os.path.join(os.getenv('OTHER_BIN', ''), 'some_bin')
|
/linux-6.6.21/Documentation/ ! |
D | conf.py | 16 import os 44 sys.path.insert(0, os.path.abspath('sphinx')) 140 if 'SPHINX_IMGMATH' in os.environ: 141 env_sphinx_imgmath = os.environ['SPHINX_IMGMATH'] 281 if "DOCS_THEME" in os.environ: 282 html_theme = os.environ["DOCS_THEME"] 316 if "DOCS_CSS" in os.environ: 317 css = os.environ["DOCS_CSS"].split(" ") 443 for fn in os.listdir('.'): 444 doc = os.path.join(fn, "index") [all …]
|
/linux-6.6.21/drivers/gpu/drm/ci/ ! |
D | check-patch.py | 11 import os 12 import os.path 16 repourl = "https://gitlab.freedesktop.org/%s.git" % os.environ["CI_MERGE_REQUEST_PROJECT_PATH"] 21 os.environ["GIT_DEPTH"] = "1000" 24 subprocess.check_call(["git", "fetch", "check-patch", os.environ["CI_MERGE_REQUEST_TARGET_BRANCH_NA… 29 … "check-patch/%s" % os.environ["CI_MERGE_REQUEST_TARGET_BRANCH_NAME"], "HEAD"], 50 "--types", os.environ["CHECKPATCH_TYPES"],
|
/linux-6.6.21/scripts/clang-tools/ ! |
D | gen_compile_commands.py | 13 import os 67 os.path.abspath(args.directory), 86 exclude_dirs = [ os.path.join(directory, d) for d in _EXCLUDE_DIRS ] 88 for dirpath, dirnames, filenames in os.walk(directory, topdown=True): 96 yield os.path.join(dirpath, filename) 108 dir, base = os.path.split(path) 109 return os.path.join(dir, '.' + base + '.cmd') 142 base, ext = os.path.splitext(obj) 176 abs_path = os.path.abspath(os.path.join(root_directory, file_path)) 177 if not os.path.exists(abs_path): [all …]
|
/linux-6.6.21/tools/power/x86/intel_pstate_tracer/ ! |
D | intel_pstate_tracer.py | 29 import os 104 if os.path.exists(file_name): 125 if os.path.exists(file_name): 144 if os.path.exists(file_name): 159 if os.path.exists(file_name): 174 if os.path.exists('cpu.csv'): 348 if os.path.exists('cpu.csv'): 351 os.system('grep -m 1 common_cpu cpu.csv > cpu{:0>3}.csv'.format(index)) 352 os.system('grep CPU_{:0>3} cpu.csv >> cpu{:0>3}.csv'.format(index, index)) 357 uid = os.environ.get('SUDO_UID') [all …]
|
/linux-6.6.21/tools/testing/kunit/ ! |
D | kunit_kernel.py | 13 import os 31 ABS_TOOL_PATH = os.path.abspath(os.path.dirname(__file__)) 32 QEMU_CONFIGS_DIR = os.path.join(ABS_TOOL_PATH, 'qemu_configs') 117 kernel_path = os.path.join(build_dir, self._kernel_path) 147 linux_bin = os.path.join(build_dir, 'linux') 156 return os.path.join(build_dir, KCONFIG_PATH) 159 return os.path.join(build_dir, KUNITCONFIG_PATH) 162 return os.path.join(build_dir, OLD_KUNITCONFIG_PATH) 168 if not os.path.exists(path): 175 if os.path.isdir(path): [all …]
|
/linux-6.6.21/drivers/scsi/elx/efct/ ! |
D | efct_hw.c | 50 struct efct *efct = hw->os; in efct_hw_read_max_dump_size() 66 efc_log_debug(hw->os, "set dump location cmd failed\n"); in efct_hw_read_max_dump_size() 73 efc_log_debug(hw->os, "Dump size %x\n", hw->dump_size); in efct_hw_read_max_dump_size() 85 struct efct *efct = hw->os; in __efct_read_topology_cb() 88 efc_log_debug(hw->os, "bad status cqe=%#x mqe=%#x\n", status, in __efct_read_topology_cb() 170 struct efct *efct = hw->os; in efct_hw_cb_link() 183 efc_log_info(hw->os, "Link Up, NPORT, speed is %d\n", in efct_hw_cb_link() 193 efc_log_info(hw->os, "Link Up, LOOP, speed is %d\n", in efct_hw_cb_link() 203 efc_log_debug(hw->os, "READ_TOPOLOGY failed\n"); in efct_hw_cb_link() 205 efc_log_info(hw->os, "%s(%#x), speed is %d\n", in efct_hw_cb_link() [all …]
|
/linux-6.6.21/drivers/comedi/drivers/ni_routing/tools/ ! |
D | convert_csv_to_c.py | 7 import os, sys, re 152 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H)) 241 sheet_filename = os.path.join(self.ITEMS_DIR,'{}.c'.format(S)) 258 with open(os.path.join(self.OUTPUT_DIR, sheet_filename), 'w') as f: 262 with open(os.path.join(self.OUTPUT_DIR, self.MKFILE_SEGMENTS), 'w') as f: 268 EXTERN_H = os.path.join(self.ITEMS_DIR, self.EXTERN_H) 269 with open(os.path.join(self.OUTPUT_DIR, EXTERN_H), 'w') as f: 278 filename=os.path.join(self.OUTPUT_DIR, self.SET_C) 281 os.makedirs(os.path.join(self.OUTPUT_DIR, self.ITEMS_DIR)) 331 """.format(filename=SET_C, extern_h=os.path.join(ITEMS_DIR, EXTERN_H)) [all …]
|
/linux-6.6.21/tools/power/x86/amd_pstate_tracer/ ! |
D | amd_pstate_trace.py | 24 import os 69 if os.path.exists(file_name): 86 if os.path.exists(file_name): 101 if os.path.exists(file_name): 179 if os.path.exists('cpu.csv'): 180 os.remove('cpu.csv') 278 location = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__))) 279 file_name = os.path.join(location, arg) 303 if not os.path.exists('results'): 304 os.mkdir('results') [all …]
|
/linux-6.6.21/scripts/kconfig/tests/ ! |
D | conftest.py | 12 import os 18 CONF_PATH = os.path.abspath(os.path.join('scripts', 'kconfig', 'conf')) 36 self._test_dir = os.path.dirname(str(request.fspath)) 66 shutil.copyfile(os.path.join(self._test_dir, dot_config), 67 os.path.join(temp_dir, '.config')) 74 env=dict(os.environ, **extra_env)) 94 with open(os.path.join(temp_dir, out_file)) as f: 154 defconfig_path = os.path.join(self._test_dir, defconfig) 159 all_config_path = os.path.join(self._test_dir, all_config) 230 with open(os.path.join(self._test_dir, expected)) as f:
|
/linux-6.6.21/Documentation/security/tpm/ ! |
D | xen-tpmfront.rst | 24 mini-os to reduce memory and processor overhead. 26 This mini-os vTPM subsystem was built on top of the previous vTPM work done by 44 | mini-os/tpmback | 50 | mini-os/tpmfront | 55 | mini-os/tpmback | 61 | mini-os/tpm_tis | 77 * mini-os/tpmback: 78 Mini-os TPM backend driver. The Linux frontend driver 84 A mini-os stub domain that implements a vTPM. There is a 89 * mini-os/tpmfront: [all …]
|
/linux-6.6.21/Documentation/sphinx/ ! |
D | load_config.py | 4 import os 19 config_file = os.environ.get("SPHINX_CONF", None) 21 and os.path.normpath(namespace["__file__"]) != os.path.normpath(config_file) ): 22 config_file = os.path.abspath(config_file) 47 if os.path.isfile(config_file):
|
D | kernel_include.py | 34 import os.path 63 path = os.path.realpath( 64 os.path.expandvars(self.arguments[0])) 67 if path.startswith(os.sep + "etc"): 74 env.note_dependency(os.path.abspath(path)) 91 source_dir = os.path.dirname(os.path.abspath(source)) 94 path = os.path.join(self.standard_include_path, path[1:-1]) 95 path = os.path.normpath(os.path.join(source_dir, path))
|
D | kernel_abi.py | 36 import os 78 srctree = os.path.abspath(os.environ["srctree"]) 81 os.path.join(srctree, 'scripts/get_abi.pl'), 84 '--dir', os.path.join(srctree, 'Documentation', self.arguments[0]), 90 … lines = subprocess.check_output(args, cwd=os.path.dirname(doc.current_source)).decode('utf-8') 123 env.note_dependency(os.path.abspath(f))
|
/linux-6.6.21/tools/cgroup/ ! |
D | memcg_shrinker.py | 6 import os 13 for root, subdirs, _ in os.walk(cgroup_root): 15 path = os.path.join(root, cgroup) 16 ino = os.stat(path).st_ino 26 for root, subdirs, _ in os.walk(shrinker_debugfs): 28 count_path = os.path.join(root, shrinker, "count")
|
/linux-6.6.21/drivers/gpu/drm/tegra/ ! |
D | riscv.c | 40 struct tegra_drm_riscv_descriptor *os = &riscv->os_desc; in tegra_drm_riscv_read_descriptors() local 54 READ_PROP("nvidia,os-manifest-offset", &os->manifest_offset); in tegra_drm_riscv_read_descriptors() 55 READ_PROP("nvidia,os-code-offset", &os->code_offset); in tegra_drm_riscv_read_descriptors() 56 READ_PROP("nvidia,os-data-offset", &os->data_offset); in tegra_drm_riscv_read_descriptors() 60 bl->data_offset == 0 && os->manifest_offset == 0 && in tegra_drm_riscv_read_descriptors() 61 os->code_offset == 0 && os->data_offset == 0) { in tegra_drm_riscv_read_descriptors()
|