/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_cmdbuf_res.c | 53 struct vmw_cmdbuf_res_manager *man; member 85 vmw_cmdbuf_res_lookup(struct vmw_cmdbuf_res_manager *man, in vmw_cmdbuf_res_lookup() argument 93 ret = drm_ht_find_item(&man->resources, key, &hash); in vmw_cmdbuf_res_lookup() 110 static void vmw_cmdbuf_res_free(struct vmw_cmdbuf_res_manager *man, in vmw_cmdbuf_res_free() argument 114 WARN_ON(drm_ht_remove_item(&man->resources, &entry->hash)); in vmw_cmdbuf_res_free() 138 list_add_tail(&entry->head, &entry->man->list); in vmw_cmdbuf_res_commit() 171 vmw_cmdbuf_res_free(entry->man, entry); in vmw_cmdbuf_res_revert() 174 ret = drm_ht_insert_item(&entry->man->resources, in vmw_cmdbuf_res_revert() 177 list_add_tail(&entry->head, &entry->man->list); in vmw_cmdbuf_res_revert() 200 int vmw_cmdbuf_res_add(struct vmw_cmdbuf_res_manager *man, in vmw_cmdbuf_res_add() argument [all …]
|
D | vmwgfx_gmrid_manager.c | 47 static int vmw_gmrid_man_get_node(struct ttm_mem_type_manager *man, in vmw_gmrid_man_get_node() argument 53 (struct vmwgfx_gmrid_man *)man->priv; in vmw_gmrid_man_get_node() 101 static void vmw_gmrid_man_put_node(struct ttm_mem_type_manager *man, in vmw_gmrid_man_put_node() argument 105 (struct vmwgfx_gmrid_man *)man->priv; in vmw_gmrid_man_put_node() 116 static int vmw_gmrid_man_init(struct ttm_mem_type_manager *man, in vmw_gmrid_man_init() argument 120 container_of(man->bdev, struct vmw_private, bdev); in vmw_gmrid_man_init() 143 man->priv = (void *) gman; in vmw_gmrid_man_init() 147 static int vmw_gmrid_man_takedown(struct ttm_mem_type_manager *man) in vmw_gmrid_man_takedown() argument 150 (struct vmwgfx_gmrid_man *)man->priv; in vmw_gmrid_man_takedown() 159 static void vmw_gmrid_man_debug(struct ttm_mem_type_manager *man, in vmw_gmrid_man_debug() argument
|
D | vmwgfx_buffer.c | 715 struct ttm_mem_type_manager *man) in vmw_init_mem_type() argument 721 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in vmw_init_mem_type() 722 man->available_caching = TTM_PL_FLAG_CACHED; in vmw_init_mem_type() 723 man->default_caching = TTM_PL_FLAG_CACHED; in vmw_init_mem_type() 727 man->func = &ttm_bo_manager_func; in vmw_init_mem_type() 728 man->gpu_offset = 0; in vmw_init_mem_type() 729 man->flags = TTM_MEMTYPE_FLAG_FIXED | TTM_MEMTYPE_FLAG_MAPPABLE; in vmw_init_mem_type() 730 man->available_caching = TTM_PL_FLAG_CACHED; in vmw_init_mem_type() 731 man->default_caching = TTM_PL_FLAG_CACHED; in vmw_init_mem_type() 740 man->func = &vmw_gmrid_manager_func; in vmw_init_mem_type() [all …]
|
D | vmwgfx_shader.c | 554 int vmw_compat_shader_remove(struct vmw_cmdbuf_res_manager *man, in vmw_compat_shader_remove() argument 561 return vmw_cmdbuf_res_remove(man, vmw_cmdbuf_res_compat_shader, in vmw_compat_shader_remove() 582 struct vmw_cmdbuf_res_manager *man, in vmw_compat_shader_add() argument 631 ret = vmw_cmdbuf_res_add(man, vmw_cmdbuf_res_compat_shader, in vmw_compat_shader_add() 653 vmw_compat_shader_lookup(struct vmw_cmdbuf_res_manager *man, in vmw_compat_shader_lookup() argument 660 return vmw_cmdbuf_res_lookup(man, vmw_cmdbuf_res_compat_shader, in vmw_compat_shader_lookup()
|
D | vmwgfx_context.c | 36 struct vmw_cmdbuf_res_manager *man; member 118 vmw_cmdbuf_res_man_destroy(uctx->man); in vmw_hw_context_destroy() 161 uctx->man = vmw_cmdbuf_res_man_create(dev_priv); in vmw_gb_context_init() 162 if (unlikely(IS_ERR(uctx->man))) { in vmw_gb_context_init() 163 ret = PTR_ERR(uctx->man); in vmw_gb_context_init() 164 uctx->man = NULL; in vmw_gb_context_init() 920 return container_of(ctx, struct vmw_user_context, res)->man; in vmw_context_res_man()
|
D | vmwgfx_drv.h | 1042 struct vmw_cmdbuf_res_manager *man, 1047 extern int vmw_compat_shader_remove(struct vmw_cmdbuf_res_manager *man, 1051 vmw_compat_shader_lookup(struct vmw_cmdbuf_res_manager *man, 1060 extern void vmw_cmdbuf_res_man_destroy(struct vmw_cmdbuf_res_manager *man); 1063 vmw_cmdbuf_res_lookup(struct vmw_cmdbuf_res_manager *man, 1068 extern int vmw_cmdbuf_res_add(struct vmw_cmdbuf_res_manager *man, 1073 extern int vmw_cmdbuf_res_remove(struct vmw_cmdbuf_res_manager *man,
|
/linux-4.1.27/drivers/gpu/drm/ttm/ |
D | ttm_bo_util.c | 80 int ttm_mem_io_lock(struct ttm_mem_type_manager *man, bool interruptible) in ttm_mem_io_lock() argument 82 if (likely(man->io_reserve_fastpath)) in ttm_mem_io_lock() 86 return mutex_lock_interruptible(&man->io_reserve_mutex); in ttm_mem_io_lock() 88 mutex_lock(&man->io_reserve_mutex); in ttm_mem_io_lock() 93 void ttm_mem_io_unlock(struct ttm_mem_type_manager *man) in ttm_mem_io_unlock() argument 95 if (likely(man->io_reserve_fastpath)) in ttm_mem_io_unlock() 98 mutex_unlock(&man->io_reserve_mutex); in ttm_mem_io_unlock() 102 static int ttm_mem_io_evict(struct ttm_mem_type_manager *man) in ttm_mem_io_evict() argument 106 if (!man->use_io_reserve_lru || list_empty(&man->io_reserve_lru)) in ttm_mem_io_evict() 109 bo = list_first_entry(&man->io_reserve_lru, in ttm_mem_io_evict() [all …]
|
D | ttm_bo.c | 72 struct ttm_mem_type_manager *man = &bdev->man[mem_type]; in ttm_mem_type_debug() local 74 pr_err(" has_type: %d\n", man->has_type); in ttm_mem_type_debug() 75 pr_err(" use_type: %d\n", man->use_type); in ttm_mem_type_debug() 76 pr_err(" flags: 0x%08X\n", man->flags); in ttm_mem_type_debug() 77 pr_err(" gpu_offset: 0x%08llX\n", man->gpu_offset); in ttm_mem_type_debug() 78 pr_err(" size: %llu\n", man->size); in ttm_mem_type_debug() 79 pr_err(" available_caching: 0x%08X\n", man->available_caching); in ttm_mem_type_debug() 80 pr_err(" default_caching: 0x%08X\n", man->default_caching); in ttm_mem_type_debug() 82 (*man->func->debug)(man, TTM_PFX); in ttm_mem_type_debug() 167 struct ttm_mem_type_manager *man; in ttm_bo_add_to_lru() local [all …]
|
D | ttm_bo_manager.c | 50 static int ttm_bo_man_get_node(struct ttm_mem_type_manager *man, in ttm_bo_man_get_node() argument 55 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv; in ttm_bo_man_get_node() 65 lpfn = man->size; in ttm_bo_man_get_node() 93 static void ttm_bo_man_put_node(struct ttm_mem_type_manager *man, in ttm_bo_man_put_node() argument 96 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv; in ttm_bo_man_put_node() 108 static int ttm_bo_man_init(struct ttm_mem_type_manager *man, in ttm_bo_man_init() argument 119 man->priv = rman; in ttm_bo_man_init() 123 static int ttm_bo_man_takedown(struct ttm_mem_type_manager *man) in ttm_bo_man_takedown() argument 125 struct ttm_range_manager *rman = (struct ttm_range_manager *) man->priv; in ttm_bo_man_takedown() 133 man->priv = NULL; in ttm_bo_man_takedown() [all …]
|
D | ttm_bo_vm.c | 100 struct ttm_mem_type_manager *man = in ttm_bo_vm_fault() local 101 &bdev->man[bo->mem.mem_type]; in ttm_bo_vm_fault() 166 ret = ttm_mem_io_lock(man, true); in ttm_bo_vm_fault() 254 ttm_mem_io_unlock(man); in ttm_bo_vm_fault()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_ttm.c | 33 nouveau_vram_manager_init(struct ttm_mem_type_manager *man, unsigned long psize) in nouveau_vram_manager_init() argument 35 struct nouveau_drm *drm = nouveau_bdev(man->bdev); in nouveau_vram_manager_init() 37 man->priv = pfb; in nouveau_vram_manager_init() 42 nouveau_vram_manager_fini(struct ttm_mem_type_manager *man) in nouveau_vram_manager_fini() argument 44 man->priv = NULL; in nouveau_vram_manager_fini() 63 nouveau_vram_manager_del(struct ttm_mem_type_manager *man, in nouveau_vram_manager_del() argument 66 struct nouveau_drm *drm = nouveau_bdev(man->bdev); in nouveau_vram_manager_del() 73 nouveau_vram_manager_new(struct ttm_mem_type_manager *man, in nouveau_vram_manager_new() argument 78 struct nouveau_drm *drm = nouveau_bdev(man->bdev); in nouveau_vram_manager_new() 107 nouveau_vram_manager_debug(struct ttm_mem_type_manager *man, const char *prefix) in nouveau_vram_manager_debug() argument [all …]
|
D | nouveau_bo.c | 604 struct ttm_mem_type_manager *man) in nouveau_bo_init_mem_type() argument 610 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in nouveau_bo_init_mem_type() 611 man->available_caching = TTM_PL_MASK_CACHING; in nouveau_bo_init_mem_type() 612 man->default_caching = TTM_PL_FLAG_CACHED; in nouveau_bo_init_mem_type() 615 man->flags = TTM_MEMTYPE_FLAG_FIXED | in nouveau_bo_init_mem_type() 617 man->available_caching = TTM_PL_FLAG_UNCACHED | in nouveau_bo_init_mem_type() 619 man->default_caching = TTM_PL_FLAG_WC; in nouveau_bo_init_mem_type() 624 man->available_caching = TTM_PL_FLAG_UNCACHED; in nouveau_bo_init_mem_type() 625 man->default_caching = TTM_PL_FLAG_UNCACHED; in nouveau_bo_init_mem_type() 628 man->func = &nouveau_vram_manager; in nouveau_bo_init_mem_type() [all …]
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Makefile | 44 mandir?=$(prefix)/share/man 55 DOC_REF = origin/man 164 all: html man 170 man: man1 man5 man7 target 179 install: install-man 181 check-man-tools: 186 do-install-man: man 187 $(call QUIET_INSTALL, Documentation-man) \ 195 install-man: check-man-tools man 198 DO_INSTALL_MAN = $(warning Please install $(missing_tools) to have the man pages installed) [all …]
|
D | perf-help.txt | 23 up. The 'man' program is used by default for this purpose, but this
|
D | perf-trace.txt | 27 found in the perf record man page.
|
D | perf-top.txt | 120 Please see description of --sort in the perf-report man page.
|
D | perf-diff.txt | 62 Please see description of --sort in the perf-report man page.
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_ttm.c | 161 struct ttm_mem_type_manager *man) in qxl_init_mem_type() argument 166 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in qxl_init_mem_type() 167 man->available_caching = TTM_PL_MASK_CACHING; in qxl_init_mem_type() 168 man->default_caching = TTM_PL_FLAG_CACHED; in qxl_init_mem_type() 173 man->func = &ttm_bo_manager_func; in qxl_init_mem_type() 174 man->gpu_offset = 0; in qxl_init_mem_type() 175 man->flags = TTM_MEMTYPE_FLAG_FIXED | in qxl_init_mem_type() 177 man->available_caching = TTM_PL_MASK_CACHING; in qxl_init_mem_type() 178 man->default_caching = TTM_PL_FLAG_CACHED; in qxl_init_mem_type() 219 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; in qxl_ttm_io_mem_reserve() local [all …]
|
D | qxl_object.c | 147 struct ttm_mem_type_manager *man = &bo->tbo.bdev->man[bo->tbo.mem.mem_type]; in qxl_bo_kmap_atomic_page() local 159 (void) ttm_mem_io_lock(man, false); in qxl_bo_kmap_atomic_page() 161 ttm_mem_io_unlock(man); in qxl_bo_kmap_atomic_page() 189 struct ttm_mem_type_manager *man = &bo->tbo.bdev->man[bo->tbo.mem.mem_type]; in qxl_bo_kunmap_atomic_page() local 201 (void) ttm_mem_io_lock(man, false); in qxl_bo_kunmap_atomic_page() 203 ttm_mem_io_unlock(man); in qxl_bo_kunmap_atomic_page()
|
D | qxl_cmd.c | 520 …cmd->u.surface_create.data |= (new_mem->start << PAGE_SHIFT) + surf->tbo.bdev->man[new_mem->mem_ty… in qxl_hw_surface_alloc()
|
/linux-4.1.27/drivers/gpu/drm/cirrus/ |
D | cirrus_ttm.c | 114 struct ttm_mem_type_manager *man) in cirrus_bo_init_mem_type() argument 118 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in cirrus_bo_init_mem_type() 119 man->available_caching = TTM_PL_MASK_CACHING; in cirrus_bo_init_mem_type() 120 man->default_caching = TTM_PL_FLAG_CACHED; in cirrus_bo_init_mem_type() 123 man->func = &ttm_bo_manager_func; in cirrus_bo_init_mem_type() 124 man->flags = TTM_MEMTYPE_FLAG_FIXED | in cirrus_bo_init_mem_type() 126 man->available_caching = TTM_PL_FLAG_UNCACHED | in cirrus_bo_init_mem_type() 128 man->default_caching = TTM_PL_FLAG_WC; in cirrus_bo_init_mem_type() 159 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; in cirrus_ttm_io_mem_reserve() local 167 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE)) in cirrus_ttm_io_mem_reserve()
|
/linux-4.1.27/drivers/gpu/drm/mgag200/ |
D | mgag200_ttm.c | 114 struct ttm_mem_type_manager *man) in mgag200_bo_init_mem_type() argument 118 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in mgag200_bo_init_mem_type() 119 man->available_caching = TTM_PL_MASK_CACHING; in mgag200_bo_init_mem_type() 120 man->default_caching = TTM_PL_FLAG_CACHED; in mgag200_bo_init_mem_type() 123 man->func = &ttm_bo_manager_func; in mgag200_bo_init_mem_type() 124 man->flags = TTM_MEMTYPE_FLAG_FIXED | in mgag200_bo_init_mem_type() 126 man->available_caching = TTM_PL_FLAG_UNCACHED | in mgag200_bo_init_mem_type() 128 man->default_caching = TTM_PL_FLAG_WC; in mgag200_bo_init_mem_type() 159 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; in mgag200_ttm_io_mem_reserve() local 167 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE)) in mgag200_ttm_io_mem_reserve()
|
/linux-4.1.27/drivers/gpu/drm/ast/ |
D | ast_ttm.c | 114 struct ttm_mem_type_manager *man) in ast_bo_init_mem_type() argument 118 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in ast_bo_init_mem_type() 119 man->available_caching = TTM_PL_MASK_CACHING; in ast_bo_init_mem_type() 120 man->default_caching = TTM_PL_FLAG_CACHED; in ast_bo_init_mem_type() 123 man->func = &ttm_bo_manager_func; in ast_bo_init_mem_type() 124 man->flags = TTM_MEMTYPE_FLAG_FIXED | in ast_bo_init_mem_type() 126 man->available_caching = TTM_PL_FLAG_UNCACHED | in ast_bo_init_mem_type() 128 man->default_caching = TTM_PL_FLAG_WC; in ast_bo_init_mem_type() 159 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; in ast_ttm_io_mem_reserve() local 167 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE)) in ast_ttm_io_mem_reserve()
|
/linux-4.1.27/Documentation/DocBook/ |
D | Makefile | 59 find $(obj)/man -name '*.9' | xargs gzip -f 62 mkdir -p /usr/local/man/man9/ 63 install $(obj)/man/*.9.gz /usr/local/man/man9/ 153 cmd_db2man = if grep -q refentry $<; then xmlto man $(XMLTOFLAGS) -o $(obj)/man $< ; fi 158 $(Q)mkdir -p $(obj)/man 223 clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man
|
/linux-4.1.27/include/drm/ttm/ |
D | ttm_bo_driver.h | 169 int (*init)(struct ttm_mem_type_manager *man, unsigned long p_size); 179 int (*takedown)(struct ttm_mem_type_manager *man); 209 int (*get_node)(struct ttm_mem_type_manager *man, 224 void (*put_node)(struct ttm_mem_type_manager *man, 237 void (*debug)(struct ttm_mem_type_manager *man, const char *prefix); 370 struct ttm_mem_type_manager *man); 520 struct ttm_mem_type_manager man[TTM_NUM_MEM_TYPES]; member 749 extern int ttm_mem_io_lock(struct ttm_mem_type_manager *man, 751 extern void ttm_mem_io_unlock(struct ttm_mem_type_manager *man);
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_ttm.c | 128 struct ttm_mem_type_manager *man) in radeon_init_mem_type() argument 137 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in radeon_init_mem_type() 138 man->available_caching = TTM_PL_MASK_CACHING; in radeon_init_mem_type() 139 man->default_caching = TTM_PL_FLAG_CACHED; in radeon_init_mem_type() 142 man->func = &ttm_bo_manager_func; in radeon_init_mem_type() 143 man->gpu_offset = rdev->mc.gtt_start; in radeon_init_mem_type() 144 man->available_caching = TTM_PL_MASK_CACHING; in radeon_init_mem_type() 145 man->default_caching = TTM_PL_FLAG_CACHED; in radeon_init_mem_type() 146 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE | TTM_MEMTYPE_FLAG_CMA; in radeon_init_mem_type() 155 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in radeon_init_mem_type() [all …]
|
D | radeon_gem.c | 219 struct ttm_mem_type_manager *man; in radeon_gem_info_ioctl() local 221 man = &rdev->mman.bdev.man[TTM_PL_VRAM]; in radeon_gem_info_ioctl() 224 args->vram_visible = (u64)man->size << PAGE_SHIFT; in radeon_gem_info_ioctl()
|
/linux-4.1.27/tools/power/acpi/ |
D | Makefile | 44 mandir ?= /usr/man 152 install-man: 153 $(INSTALL_DATA) -D man/acpidump.8 $(DESTDIR)${mandir}/man8/acpidump.8 155 install: all install-tools install-man 161 .PHONY: all utils install-tools install-man install uninstall clean
|
/linux-4.1.27/drivers/atm/ |
D | firestream.c | 451 unsigned int man = -1; /* hush gcc */ in make_rate() local 478 man = 511; in make_rate() 485 man = rate; in make_rate() 488 while (!(man & (1<<31))) { in make_rate() 490 man = man<<1; in make_rate() 497 man = man<<1; in make_rate() 498 man &= 0xffffffffU; /* a nop on 32-bit systems */ in make_rate() 511 man = man>>(32-9); in make_rate() 516 if (man & (~0U>>9)) { in make_rate() 517 man = (man>>(32-9)) + 1; in make_rate() [all …]
|
D | ambassador.c | 892 unsigned int man = -1; // hush gcc in make_rate() local 917 man = 511; in make_rate() 924 man = rate; in make_rate() 927 while (!(man & (1<<31))) { in make_rate() 929 man = man<<1; in make_rate() 935 man = man<<1; in make_rate() 936 man &= 0xffffffffU; // a nop on 32-bit systems in make_rate() 948 man = man>>(32-9); in make_rate() 953 if (man & (~0U>>9)) { in make_rate() 954 man = (man>>(32-9)) + 1; in make_rate() [all …]
|
D | he.c | 655 unsigned rate_atmf, exp, man; in he_init_cs_block_rcm() local 713 man = (rate_atmf & 0x1f) << 4; in he_init_cs_block_rcm() 720 rate_cps = (unsigned long long) (1 << exp) * (man + 512) >> 9; in he_init_cs_block_rcm()
|
/linux-4.1.27/drivers/media/i2c/smiapp/ |
D | smiapp-regs.c | 29 uint64_t man; in float_to_u32_mul_1000000() local 58 man = ((phloat & 0x7fffff) | 0x800000) * 1000000ULL; in float_to_u32_mul_1000000() 61 man >>= -exp; in float_to_u32_mul_1000000() 63 man <<= exp; in float_to_u32_mul_1000000() 65 man >>= 23; /* Remove mantissa bias */ in float_to_u32_mul_1000000() 67 return man & 0xffffffff; in float_to_u32_mul_1000000()
|
/linux-4.1.27/drivers/gpu/drm/bochs/ |
D | bochs_mm.c | 91 struct ttm_mem_type_manager *man) in bochs_bo_init_mem_type() argument 95 man->flags = TTM_MEMTYPE_FLAG_MAPPABLE; in bochs_bo_init_mem_type() 96 man->available_caching = TTM_PL_MASK_CACHING; in bochs_bo_init_mem_type() 97 man->default_caching = TTM_PL_FLAG_CACHED; in bochs_bo_init_mem_type() 100 man->func = &ttm_bo_manager_func; in bochs_bo_init_mem_type() 101 man->flags = TTM_MEMTYPE_FLAG_FIXED | in bochs_bo_init_mem_type() 103 man->available_caching = TTM_PL_FLAG_UNCACHED | in bochs_bo_init_mem_type() 105 man->default_caching = TTM_PL_FLAG_WC; in bochs_bo_init_mem_type() 137 struct ttm_mem_type_manager *man = &bdev->man[mem->mem_type]; in bochs_ttm_io_mem_reserve() local 145 if (!(man->flags & TTM_MEMTYPE_FLAG_MAPPABLE)) in bochs_ttm_io_mem_reserve()
|
/linux-4.1.27/tools/power/x86/turbostat/ |
D | Makefile | 25 install -d $(DESTDIR)$(PREFIX)/share/man/man8 26 install turbostat.8 $(DESTDIR)$(PREFIX)/share/man/man8
|
/linux-4.1.27/Documentation/ |
D | kernel-doc-nano-HOWTO.txt | 122 them up directly into DocBook, man, text, and HTML. (No, not 166 If you want to see man pages instead, you can do this: 169 $ scripts/kernel-doc -man $(find -name '*.c') | split-man.pl /tmp/man 170 $ scripts/kernel-doc -man $(find -name '*.h') | split-man.pl /tmp/man 172 Here is split-man.pl: 202 $ scripts/kernel-doc -man -function fn file | nroff -man | less
|
D | initrd.txt | 105 man page. 213 is also available via the pivot_root utility (see pivot_root(8) man 253 pivot_root(8) man page for details.
|
D | kernel-per-CPU-kthreads.txt | 15 o man taskset: Using the taskset command to bind tasks to sets 18 o man sched_setaffinity: Using the sched_setaffinity() system
|
D | BUG-HUNTING | 48 - read the man page for git-bisect
|
D | printk-formats.txt | 205 https://tools.ietf.org/html/draft-ietf-6man-text-addr-representation-07
|
D | email-clients.txt | 7 email clients. The man page for this is quite good. On the receiving
|
D | Changes | 355 o <http://www.freedesktop.org/software/systemd/man/udev.html>
|
D | oops-tracing.txt | 162 See the klogd man page for information on how klogd searches for map
|
D | nommu-mmap.txt | 124 Linux man pages (ver 2.22 or later).
|
D | HOWTO | 161 Postscript, HTML, and man pages by running: 492 a person's name. A man may be named Andrea and a woman may be named Pat.
|
D | kprobes.txt | 329 Here are terse, mini-man-page specifications for these functions and
|
D | CodingStyle | 551 re-formatting you may want to take a look at the man page. But
|
D | SubmittingPatches | 310 maintainer (as listed in the MAINTAINERS file) a man-pages patch, or at
|
/linux-4.1.27/tools/power/x86/x86_energy_perf_policy/ |
D | Makefile | 10 install x86_energy_perf_policy.8 ${DESTDIR}/usr/share/man/man8/
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | imx6dl-tx6u-811x.dts | 31 * a poor man's way to create a 1:1 relationship between 53 * a poor man's way to create a 1:1 relationship between
|
D | imx6q-tx6q-1110.dts | 31 * a poor man's way to create a 1:1 relationship between 53 * a poor man's way to create a 1:1 relationship between
|
D | imx6dl-tx6dl-comtft.dts | 29 * a poor man's way to create a 1:1 relationship between
|
D | imx6q-tx6q-1010-comtft.dts | 29 * a poor man's way to create a 1:1 relationship between
|
D | imx6q-tx6q-1020-comtft.dts | 29 * a poor man's way to create a 1:1 relationship between
|
D | imx6dl-tx6u-801x.dts | 29 * a poor man's way to create a 1:1 relationship between
|
D | imx6q-tx6q-1010.dts | 29 * a poor man's way to create a 1:1 relationship between
|
D | imx6q-tx6q-1020.dts | 29 * a poor man's way to create a 1:1 relationship between
|
/linux-4.1.27/Documentation/arm/ |
D | cluster-pm-race-avoidance.txt | 258 "Last man and first man selection" for more explanation. 408 Last man and First man selection 412 is commonly referred to as the "last man". 415 referred to as the "first man". 421 Last man: 425 be used to select a last man safely, before the CPUs become 429 First man: 433 attempts to play the first man role and do the cluster-level
|
/linux-4.1.27/tools/perf/ |
D | Makefile.perf | 420 DOC_TARGETS := doc man html info pdf 422 INSTALL_DOC_TARGETS := $(patsubst %,install-%,$(DOC_TARGETS)) try-install-man 423 INSTALL_DOC_TARGETS += quick-install-doc quick-install-man quick-install-html 509 install: install-bin try-install-man install-traceevent-plugins
|
/linux-4.1.27/drivers/media/i2c/ |
D | as3645a.c | 565 int rval, man, model, rfu, version; in as3645a_registered() local 579 man = AS_DESIGN_INFO_FACTORY(rval); in as3645a_registered() 597 switch (man) { in as3645a_registered() 618 man, version); in as3645a_registered()
|
/linux-4.1.27/fs/ext3/ |
D | Kconfig | 22 behavior of ext3 file systems, you can use the tune2fs utility ("man 24 file systems, use chattr ("man chattr"). You need to be using
|
/linux-4.1.27/arch/arm/common/ |
D | mcpm_head.S | 102 mla r11, r0, r10, r11 @ r11 = cluster first man lock 114 @ Otherwise, release the first man lock and skip setup:
|
D | vlock.S | 33 @ voting lock for first-man coordination
|
/linux-4.1.27/net/bridge/netfilter/ |
D | Kconfig | 46 brouter. See the man page for ebtables(8) and examples on the ebtables 55 local input, forwarding and local output. See the man page for 65 See the man page for ebtables(8).
|
/linux-4.1.27/tools/power/cpupower/ |
D | Makefile | 75 mandir ?= /usr/man
|
/linux-4.1.27/fs/fat/ |
D | Kconfig | 19 mtools ("man mtools") program suite. You don't need to say Y here in 25 available for Unix and DOS ("man tar" or "info tar").
|
/linux-4.1.27/tools/perf/tests/ |
D | make | 45 make_install_man := install-man 159 test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1
|
/linux-4.1.27/Documentation/security/ |
D | LSM.txt | 23 man-pages project.
|
/linux-4.1.27/drivers/tty/ |
D | Kconfig | 27 The setterm command ("man setterm") can be used to change the 29 man page console_codes(4) ("man console_codes") contains the special 32 the setfont ("man setfont") command and the key bindings are defined 33 with the loadkeys ("man loadkeys") command. 68 would use the third virtual terminal as system console. (Try "man
|
/linux-4.1.27/Documentation/filesystems/ |
D | gfs2.txt | 39 The following man pages can be found at the URL above:
|
D | ntfs.txt | 104 mount command (man 8 mount, also see man 5 fstab), the NTFS driver supports the 242 (see man 8 dmsetup). 382 appropriately (see man 5 raidtab). 418 use (see man 5 raidtab for available algorithms) and you will have to try the
|
D | sysv-fs.txt | 21 (See Coherent "man mkfs" for a description of these features.)
|
D | nilfs2.txt | 26 described in the man pages included in the package.
|
D | ramfs-rootfs-initramfs.txt | 205 Note: The cpio man page contains some bad advice that will break your initramfs
|
D | spufs.txt | 37 respective man pages.
|
D | proc.txt | 319 policy scheduling policy (man sched_setscheduler)
|
/linux-4.1.27/fs/ufs/ |
D | Kconfig | 18 (and even other operating systems) is given by the tar program ("man
|
/linux-4.1.27/fs/sysv/ |
D | Kconfig | 26 (and even other operating systems) is given by the tar program ("man
|
/linux-4.1.27/drivers/char/ |
D | Kconfig | 112 use with the "lp" kernel command line option. (Try "man bootparam" 200 with major and minor numbers 10 and 158 ("man mknod"), then every 253 with major number 10 and minor number 144 using mknod ("man mknod"), 286 major number 10 and minor number 135 using mknod ("man mknod"), you 312 major number 10 and minor number 135 using mknod ("man mknod"), you 334 major number 10 and minor number 135 using mknod ("man mknod"), you 363 major number 121 and minor number 0 using mknod ("man mknod"), you
|
/linux-4.1.27/Documentation/isdn/ |
D | CREDITS | 15 For contribution of man-pages, the imontty-tool and a perfect
|
D | README.sc | 33 2.2 Read the man pages!!! 130 2.2 Read the man pages!!! 133 any further. Type 'man 8 scctrl' and 'man 4 sc'.
|
D | README | 298 (For usage of the bind-features, refer to the isdnctrl-man-page)
|
/linux-4.1.27/Documentation/dvb/ |
D | udev.txt | 42 have a look at "man udev".
|
/linux-4.1.27/fs/nfs/ |
D | Kconfig | 17 mount(8) man page. More detail about the Linux NFS client 18 implementation is available via the nfs(5) man page.
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | Kconfig | 222 local output. See the man page for iptables(8). 306 This option adds a `mangle' table to iptables: see the man page for 393 for forwarded ARP packets. See the man page for arptables(8).
|
/linux-4.1.27/drivers/net/fddi/skfp/ |
D | smt.c | 97 struct smp_p_manufacturer *man); 1082 smt_fill_manufacturer(smc,&sif->man) ; /* set manufacturer field */ in smt_send_sif_operation() 1497 struct smp_p_manufacturer *man) in smt_fill_manufacturer() argument 1499 SMTSETPARA(man,SMT_P_MANUFACTURER) ; in smt_fill_manufacturer() 1500 memcpy((char *) man->mf_data, in smt_fill_manufacturer() 1502 sizeof(man->mf_data)) ; in smt_fill_manufacturer()
|
/linux-4.1.27/Documentation/networking/ |
D | batman-adv.txt | 143 man-adv as part of kernel, use "make menuconfig" and enable the 185 For more information, please see the manpage (man batctl).
|
D | timestamping.txt | 32 For interface details, see `man 7 socket`. 248 See `man 3 cmsg` for details of this interface. The socket manual 249 page (`man 7 socket`) describes how timestamps generated with 328 ignored on request. See also `man 2 poll`.
|
D | igb.txt | 72 For instructions on enabling WoL with ethtool, refer to the ethtool man page.
|
D | e1000e.txt | 285 instructions, refer to the ethtool man page. 290 enabling WoL with ethtool, refer to the ethtool man page.
|
D | netconsole.txt | 170 dmesg(8) man page and Documentation/kernel-parameters.txt for details.
|
D | e100.txt | 138 WoL with ethtool, refer to the ethtool man page.
|
D | eql.txt | 96 manager by Matt Dillon (-- "The man who sold his soul to code so much
|
D | z8530drv.txt | 57 please read 'man insmod' that comes with module-init-tools.
|
D | packet_mmap.txt | 459 See the SO_RCVBUF option in the socket (7) man page.
|
D | ip-sysctl.txt | 303 a buggy or malicious middlebox or man-in-the-middle can
|
/linux-4.1.27/fs/proc/ |
D | Kconfig | 26 ("man 5 proc").
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-raid.txt | 63 [max_write_behind <sectors>] See '--write-behind=' (man mdadm) 202 ('man dmsetup' for more information on the message interface.) These actions
|
/linux-4.1.27/Documentation/ko_KR/ |
D | HOWTO | 170 그리고 man 페이지들로 다음과 같이 실행하여 만들어 진다.
|
/linux-4.1.27/Documentation/zh_CN/ |
D | SubmittingPatches | 145 MAINTAINERS 文件里的)发送一个手册页(man-pages)补丁,或者至少通知一下改
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | sgetem.S | 19 | Output: The functions return exp(X) or man(X) in fp0.
|
/linux-4.1.27/drivers/tty/serial/ |
D | Kconfig | 44 "console=ttyAM0". (Try "man bootparam" or see the documentation of 72 "console=ttyAMA0". (Try "man bootparam" or see the documentation of 287 "console=ttySACx". (Try "man bootparam" or see the documentation of 309 "console=ttySiRFx". (Try "man bootparam" or see the documentation of 420 "console=ttyFB". (Try "man bootparam" or see the documentation of 457 "console=ttySA0". (Try "man bootparam" or see the documentation of 482 "console=ttySA0". (Try "man bootparam" or see the documentation of 592 "console=ttymxc0". (Try "man bootparam" or see the documentation of 889 "console=ttyCPM0". (Try "man bootparam" or see the documentation of 1128 "console=ttyOx". (Try "man bootparam" or see the documentation of
|
/linux-4.1.27/net/ipv6/netfilter/ |
D | Kconfig | 222 local output. See the man page for iptables(8). 255 This option adds a `mangle' table to iptables: see the man page for
|
/linux-4.1.27/fs/nfsd/ |
D | Kconfig | 23 exports(5) man page.
|
/linux-4.1.27/fs/xfs/ |
D | Kconfig | 69 See the xfs man page in section 5 for additional information.
|
/linux-4.1.27/block/partitions/ |
D | Kconfig | 170 operating systems) is given by the tar program ("man tar" or 237 given by the tar program ("man tar" or preferably "info tar"). If
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.devices | 132 "console=ttyS1". (Try "man bootparam" or see the documentation of
|
/linux-4.1.27/Documentation/ja_JP/ |
D | HOWTO | 202 それぞれ、PDF, Postscript, HTML, man page の形式で生成されます。
|
D | SubmittingPatches | 204 があります)に man ページのパッチを送ってください。少なくとも
|
/linux-4.1.27/drivers/net/fddi/skfp/h/ |
D | smt.h | 765 struct smp_p_manufacturer man ; /* manufacturer field */ member
|
/linux-4.1.27/arch/avr32/ |
D | Kconfig | 147 The boards are designed to be used in a man-machine
|
/linux-4.1.27/Documentation/blockdev/ |
D | cciss.txt | 96 /dev/st0, /dev/st1, etc. See the "st" man page for more details.)
|
D | paride.txt | 220 information. (Hopefully someone will write some man pages one day !).
|
/linux-4.1.27/Documentation/vm/ |
D | page_migration | 25 proc(5) man page.
|
D | numa_memory_policy.txt | 387 See the set_mempolicy(2) man page for more details 400 See the get_mempolicy(2) man page for more details 414 See the mbind(2) man page for more details.
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | fplsp.S | 5033 mov.w 4(%a0),%d1 # fetch hi(man) 10844 beq.b norm_lo # hi(man) is all zeroes! 10847 lsl.l %d2, %d0 # left shift hi(man) 10850 or.l %d3, %d0 # create hi(man) 10851 lsl.l %d2, %d1 # create lo(man) 10853 mov.l %d0, FTEMP_HI(%a0) # store new hi(man) 10854 mov.l %d1, FTEMP_LO(%a0) # store new lo(man) 10865 lsl.l %d2, %d1 # shift lo(man) 10868 mov.l %d1, FTEMP_HI(%a0) # store hi(man) 10869 clr.l FTEMP_LO(%a0) # lo(man) is now zero [all …]
|
D | fpsp.S | 2318 mov.l FP_SRC_HI(%a6),%d1 # fetch DENORM hi(man) 2321 mov.l %d1,FP_SRC_HI(%a6) # insert new hi(man) 14848 mov.l 0x4(%sp),%d1 # extract hi(man) 14849 cmpi.l %d1,&0x80000000 # is hi(man) = 0x80000000? 14852 tst.l 0x8(%sp) # is lo(man) = 0x0? 15302 cmpi.l %d1,&0x80000000 # is hi(man) = 0x80000000? 15305 tst.l 0x8(%sp) # is lo(man) = 0x0?
|
D | pfpsp.S | 2317 mov.l FP_SRC_HI(%a6),%d1 # fetch DENORM hi(man) 2320 mov.l %d1,FP_SRC_HI(%a6) # insert new hi(man)
|
/linux-4.1.27/fs/cifs/ |
D | Kconfig | 129 is handed over to the application/caller. See the man
|
/linux-4.1.27/Documentation/input/ |
D | joystick-api.txt | 131 man page.
|
/linux-4.1.27/Documentation/scsi/ |
D | advansys.txt | 118 current console. Refer to the klogd(8) and syslogd(8) man pages
|
D | sym53c8xx_2.txt | 97 the driver documentation is the sym.8 man page.
|
/linux-4.1.27/kernel/power/ |
D | Kconfig | 243 manpage ("man 8 hdparm") for that), and it doesn't turn off
|
/linux-4.1.27/tools/perf/config/ |
D | Makefile | 631 mandir = share/man
|
/linux-4.1.27/Documentation/power/ |
D | basic-pm-debugging.txt | 130 is rather a poor man's workaround.
|
/linux-4.1.27/drivers/tty/serial/8250/ |
D | Kconfig | 75 "console=ttyS1". (Try "man bootparam" or see the documentation of
|
/linux-4.1.27/arch/sparc/ |
D | Kconfig | 384 "console=ttyS1". (Try "man bootparam" or see the documentation of
|
/linux-4.1.27/Documentation/sysctl/ |
D | kernel.txt | 293 see the hostname(1) man page. 646 logging error messages. See 'man 2 syslog' for more info on
|
/linux-4.1.27/Documentation/crypto/ |
D | descore-readme.txt | 138 man pages either didn't exist or dumped core. i had heard of kerberos,
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Audiophile-Usb.txt | 430 this page: http://www.sound-man.co.uk/linuxaudio/ice1712multi.html
|
/linux-4.1.27/ |
D | README | 55 number of formats: PostScript (.ps), PDF, HTML, & man-pages, among others.
|
D | MAINTAINERS | 6226 W: http://www.kernel.org/doc/man-pages 6227 L: linux-man@vger.kernel.org
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1209 such as "mem=256M". (Try "man bootparam" or see the documentation of 1511 give you some hints here ["man dmesg"].) Everyone needs either a 1518 is broken. Try "man bootparam" or see the documentation of your boot 2112 manpage ("man 8 hdparm") for that), and it doesn't turn off
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 102 ("man klogd").
|
/linux-4.1.27/Documentation/laptops/ |
D | laptop-mode.txt | 300 # Idle timeout for your hard drive (man hdparm for valid values, -S option)
|
/linux-4.1.27/drivers/usb/serial/ |
D | Kconfig | 35 "console=ttyUSB0". (Try "man bootparam" or see the documentation of
|
/linux-4.1.27/Documentation/s390/ |
D | Debugging390.txt | 1819 man gdb or info gdb. 2127 Various bits of man & info pages of Linux. 2129 Various info & man pages.
|
/linux-4.1.27/drivers/ide/ |
D | Kconfig | 244 to enable the CMD640 bugfix/support: "cmd640.probe_vlb". (Try "man
|
/linux-4.1.27/init/ |
D | Kconfig | 272 See the man page for more details. 1807 for booting. For more information, see the man pages for
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 170 ("man smb.conf") on the Samba server system. Note that the cifs vfs,
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 10 number 130 using mknod ("man mknod"), you will get a watchdog, i.e.:
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 927 Reader-friendly intro to RCU, with the infamous old-man-and-brat
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 1713 all of the slirp options can be found in its man pages.
|