/linux-4.4.14/kernel/ |
D | kthread.c | 180 struct kthread_create_info *create = _create; in kthread() local 181 int (*threadfn)(void *data) = create->threadfn; in kthread() 182 void *data = create->data; in kthread() 194 done = xchg(&create->done, NULL); in kthread() 196 kfree(create); in kthread() 201 create->result = current; in kthread() 225 static void create_kthread(struct kthread_create_info *create) in create_kthread() argument 230 current->pref_node_fork = create->node; in create_kthread() 233 pid = kernel_thread(kthread, create, CLONE_FS | CLONE_FILES | SIGCHLD); in create_kthread() 236 struct completion *done = xchg(&create->done, NULL); in create_kthread() [all …]
|
D | smpboot.c | 191 if (ht->create) { in __smpboot_create_thread() 201 ht->create(cpu); in __smpboot_create_thread()
|
/linux-4.4.14/Documentation/DocBook/ |
D | filesystems.xml.db | 132 API-bioset-create 133 API-bioset-create-nobvec 198 API-sysfs-create-file-ns 203 API-sysfs-create-bin-file 205 API-sysfs-create-link 208 API-debugfs-create-file 209 API-debugfs-create-file-size 210 API-debugfs-create-dir 211 API-debugfs-create-automount 212 API-debugfs-create-symlink [all …]
|
D | gpu.xml.db | 18 API-drm-gem-handle-create 20 API-drm-gem-create-mmap-offset-size 21 API-drm-gem-create-mmap-offset 75 API-drm-gem-cma-create 77 API-drm-gem-cma-dumb-create-internal 78 API-drm-gem-cma-dumb-create 90 API-drm-mode-create 112 API-drm-mode-create-from-cmdline-mode 167 API-drm-mode-create-dvi-i-properties 168 API-drm-mode-create-tv-properties [all …]
|
D | scsi.xml.db | 100 API-fc-vport-create 102 API-iscsi-create-flashnode-sess 103 API-iscsi-create-flashnode-conn 112 API-iscsi-create-session 114 API-iscsi-create-conn
|
D | mtdnand.xml.db | 99 API-create-bbt 104 API-check-create 108 API-nand-create-badblock-pattern
|
D | s390-drivers.xml.db | 55 API-ccwgroup-create-dev 62 API-airq-iv-create
|
D | usb.xml.db | 122 API-usb-create-shared-hcd 123 API-usb-create-hcd 129 API-hcd-buffer-create
|
D | kernel-api.xml.db | 251 API-mempool-create 255 API-dma-pool-create 259 API-dmam-pool-create 342 API-relay-create-buf 506 API---ht-create-irq 507 API-ht-create-irq 511 API-pci-create-slot 513 API-pci-hp-create-module-link 531 API-pci-create-legacy-files 534 API-pci-create-resource-files [all …]
|
D | device-drivers.xml.db | 179 API-kthread-create-on-node 198 API-kobject-create-and-add 201 API-kset-create-and-add 294 API-driver-create-file 300 API-device-create-file 303 API-device-create-bin-file 318 API-device-create-vargs 319 API-device-create 320 API-device-create-with-groups 329 API---class-create [all …]
|
/linux-4.4.14/fs/ocfs2/dlm/ |
D | dlmlock.c | 305 struct dlm_create_lock create; in dlm_send_remote_lock_request() local 309 memset(&create, 0, sizeof(create)); in dlm_send_remote_lock_request() 310 create.node_idx = dlm->node_num; in dlm_send_remote_lock_request() 311 create.requested_type = lock->ml.type; in dlm_send_remote_lock_request() 312 create.cookie = lock->ml.cookie; in dlm_send_remote_lock_request() 313 create.namelen = res->lockname.len; in dlm_send_remote_lock_request() 314 create.flags = cpu_to_be32(flags); in dlm_send_remote_lock_request() 315 memcpy(create.name, res->lockname.name, create.namelen); in dlm_send_remote_lock_request() 317 tmpret = o2net_send_message(DLM_CREATE_LOCK_MSG, dlm->key, &create, in dlm_send_remote_lock_request() 318 sizeof(create), res->owner, &status); in dlm_send_remote_lock_request() [all …]
|
/linux-4.4.14/drivers/lightnvm/ |
D | core.c | 380 struct nvm_ioctl_create *create) in nvm_create_target() argument 382 struct nvm_ioctl_create_simple *s = &create->conf.s; in nvm_create_target() 395 tt = nvm_find_target_type(create->tgttype); in nvm_create_target() 397 pr_err("nvm: target type %s not found\n", create->tgttype); in nvm_create_target() 403 if (!strcmp(create->tgtname, t->disk->disk_name)) { in nvm_create_target() 424 sprintf(tdisk->disk_name, "%s", create->tgtname); in nvm_create_target() 480 static int __nvm_configure_create(struct nvm_ioctl_create *create) in __nvm_configure_create() argument 486 dev = nvm_find_nvm_dev(create->dev); in __nvm_configure_create() 493 if (create->conf.type != NVM_CONFIG_TYPE_SIMPLE) { in __nvm_configure_create() 497 s = &create->conf.s; in __nvm_configure_create() [all …]
|
D | Kconfig | 23 Exposes a debug management interface to create/remove targets at: 27 It is required to create/remove targets without IOCTLs.
|
/linux-4.4.14/samples/uhid/ |
D | uhid-example.c | 175 static int create(int fd) in create() function 181 strcpy((char*)ev.u.create.name, "test-uhid-device"); in create() 182 ev.u.create.rd_data = rdesc; in create() 183 ev.u.create.rd_size = sizeof(rdesc); in create() 184 ev.u.create.bus = BUS_USB; in create() 185 ev.u.create.vendor = 0x15d9; in create() 186 ev.u.create.product = 0x0a37; in create() 187 ev.u.create.version = 0; in create() 188 ev.u.create.country = 0; in create() 422 ret = create(fd); in main()
|
/linux-4.4.14/include/net/ |
D | inetpeer.h | 105 int create); 109 int vif, int create) in inet_getpeer_v4() argument 116 return inet_getpeer(base, &daddr, create); in inet_getpeer_v4() 121 int create) in inet_getpeer_v6() argument 127 return inet_getpeer(base, &daddr, create); in inet_getpeer_v6()
|
D | cfg802154.h | 315 int (*create)(struct sk_buff *skb, struct net_device *dev, member 369 return wpan_dev->header_ops->create(skb, dev, daddr, saddr, len); in wpan_dev_hard_header()
|
/linux-4.4.14/fs/bfs/ |
D | file.c | 64 struct buffer_head *bh_result, int create) in bfs_get_block() argument 73 if (!create) { in bfs_get_block() 76 create, (unsigned long)block, phys); in bfs_get_block() 88 create, (unsigned long)block, phys); in bfs_get_block() 107 create, (unsigned long)block, phys); in bfs_get_block() 135 create, (unsigned long)block, phys); in bfs_get_block()
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | Jack-Controls.txt | 22 Each jack will have a kcontrol list, so that we can create a kcontrol 34 - @initial_kctl: if true, create a kcontrol and add it to the jack 36 - @phantom_jack: Don't create a input device for phantom jacks. 38 HDA jacks can set phantom_jack to true in order to create a phantom 39 jack and set initial_kctl to true to create an initial kcontrol with
|
/linux-4.4.14/fs/xfs/ |
D | xfs_aops.h | 58 struct buffer_head *map_bh, int create); 60 struct buffer_head *map_bh, int create); 62 struct buffer_head *map_bh, int create);
|
D | xfs_aops.c | 1379 int create, in __xfs_get_blocks() argument 1401 if (!create && direct && offset >= i_size_read(inode)) in __xfs_get_blocks() 1411 if (create && !direct) { in __xfs_get_blocks() 1430 if (create && in __xfs_get_blocks() 1479 if (IS_DAX(inode) && create) { in __xfs_get_blocks() 1496 (create || !ISUNWRITTEN(&imap))) { in __xfs_get_blocks() 1501 if (create && direct) in __xfs_get_blocks() 1521 if (create && in __xfs_get_blocks() 1529 if (create) { in __xfs_get_blocks() 1548 int create) in xfs_get_blocks() argument [all …]
|
/linux-4.4.14/Documentation/device-mapper/ |
D | zero.txt | 19 To create a sparse device, start by creating a dm-zero device that's the 24 echo "0 $TEN_TERABYTES zero" | dmsetup create zero1 26 Then create a snapshot of the zero device, using any available block-device as 32 dmsetup create sparse1 34 This will create a 10TB sparse device called /dev/mapper/sparse1 that has
|
D | linear.txt | 19 echo "0 `blockdev --getsize $1` linear $1 0" | dmsetup create identity 29 $size1 $size2 linear $2 0" | dmsetup create joined 60 `echo \"$table\" | dmsetup create $name`;
|
D | delay.txt | 19 echo "0 `blockdev --getsize $1` delay $1 0 500" | dmsetup create delayed 26 echo "0 `blockdev --getsize $1` delay $1 0 0 $2 0 500" | dmsetup create delayed
|
D | striped.txt | 4 Device-Mapper's "striped" target is used to create a striped (i.e. RAID-0) 55 `echo $table | dmsetup create $dev_name`;
|
D | dm-service-time.txt | 73 dmsetup create test 85 dmsetup create test
|
D | log-writes.txt | 35 cases where a power failure at a particular point in time would create an 103 dmsetup create log --table "$TABLE" 123 dmsetup create log --table "$TABLE"
|
D | dm-queue-length.txt | 33 dmsetup create test
|
D | snapshot.txt | 6 *) To create snapshots of any block device i.e. mountable, saved states of 9 *) To create device "forks", i.e. multiple different versions of the 72 When you create the first LVM2 snapshot of a volume, four dm devices are used:
|
/linux-4.4.14/Documentation/filesystems/ |
D | exofs.txt | 53 4. Make sure the directory where you want to mount exists. If not, create it. 58 As an example, this will create the file system on: 71 An exofs lives inside a single OSD partition. You can create multiple exofs 105 pid=<integer> - The partition number to mount/create as 150 them out of order. The operations that concern us are create, delete, 156 in create's callback function, and when we successfully do a 158 OBJ_2BCREATED is set in the beginning of the create function, so we 160 - create/delete: delete should wait until the object is created 162 - create/readpage: readpage should be able to return a page 164 en-route (i.e. create, writepage, readpage) then the page [all …]
|
D | debugfs.txt | 25 of business will be to create at least one directory to hold a set of 33 dentry pointer which can be used to create files in the directory (and to 39 The most general way to create a file within a debugfs directory is with: 45 Here, name is the name of the file to create, mode describes the access 102 As might be expected, this function will create a debugfs file to represent 169 If you want to dump an u32 array in debugfs, you can create file with: 179 There is a helper function to create device related seq_file: 212 be prepared to remove all files and directories they create there. A file
|
D | hfs.txt | 54 o You can't create hard- or symlinks, device files, sockets or FIFOs. 61 o You can't create, delete or rename resource forks of files or the 73 hformat that can be used to create HFS filesystem. See
|
D | bfs.txt | 35 To create the BFS image under UnixWare you need to find out first which 42 information you can use dd(1) to create the BFS image:
|
D | ntfs.txt | 78 they exist. The driver will not create short file names however, and a 88 limitation is that at present truncate(2) will never create sparse files, 96 included. Another limitation is that write(2) will never create sparse 158 case sensitive and create file names in the POSIX 160 file names as case insensitive and to create file names 162 driver will never create short file names and will 240 You will need to create a table of the components of the volume/stripe set and 251 To create the table describing your volume you will need to know each of its 296 enabled. This will create the LDM partitions on each device at boot time. You 358 $ dmsetup create myvolume1 /etc/ntfsvolume1 [all …]
|
D | vfat.txt | 98 -- Shortname display/create setting. 100 emulate the Windows 95 rule for create. 101 win95: emulate the Windows 95 rule for display/create. 102 winnt: emulate the Windows NT rule for display/create. 104 emulate the Windows 95 rule for create. 167 such as rename, create and unlink could cause filehandles that
|
D | tmpfs.txt | 13 If you compare it to ramfs (which was the template to create tmpfs) 16 RAM, where you have to create an ordinary filesystem on top. Ramdisks 41 Remember to create the directory that you intend to mount tmpfs on
|
D | hpfs.txt | 45 attributes but do not create them. 'rw' - create extended attributes 55 are case sensitive, so for example when you create a file FOO, you can use 62 well. If you create 'a. ...', the file 'a' will be created, but you can still 194 Sometimes (I think it's random) when you create a file with one-char name under 245 not 100% ok, I have no info on it and OS/2 doesn't want to create them)
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | msgbuf.c | 570 struct msgbuf_tx_flowring_create_req *create; in brcmf_msgbuf_flowring_create_worker() local 604 create = (struct msgbuf_tx_flowring_create_req *)ret_ptr; in brcmf_msgbuf_flowring_create_worker() 605 create->msg.msgtype = MSGBUF_TYPE_FLOW_RING_CREATE; in brcmf_msgbuf_flowring_create_worker() 606 create->msg.ifidx = work->ifidx; in brcmf_msgbuf_flowring_create_worker() 607 create->msg.request_id = 0; in brcmf_msgbuf_flowring_create_worker() 608 create->tid = brcmf_flowring_tid(msgbuf->flow, flowid); in brcmf_msgbuf_flowring_create_worker() 609 create->flow_ring_id = cpu_to_le16(flowid + in brcmf_msgbuf_flowring_create_worker() 611 memcpy(create->sa, work->sa, ETH_ALEN); in brcmf_msgbuf_flowring_create_worker() 612 memcpy(create->da, work->da, ETH_ALEN); in brcmf_msgbuf_flowring_create_worker() 614 create->flow_ring_addr.high_addr = cpu_to_le32(address >> 32); in brcmf_msgbuf_flowring_create_worker() [all …]
|
/linux-4.4.14/fs/nfsd/ |
D | nfs4proc.c | 600 struct nfsd4_create *create) in nfsd4_create() argument 613 status = check_attr_support(rqstp, cstate, create->cr_bmval, in nfsd4_create() 618 switch (create->cr_type) { in nfsd4_create() 621 create->cr_name, create->cr_namelen, in nfsd4_create() 622 create->cr_data, &resfh); in nfsd4_create() 626 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); in nfsd4_create() 627 if (MAJOR(rdev) != create->cr_specdata1 || in nfsd4_create() 628 MINOR(rdev) != create->cr_specdata2) in nfsd4_create() 631 create->cr_name, create->cr_namelen, in nfsd4_create() 632 &create->cr_iattr, S_IFBLK, rdev, &resfh); in nfsd4_create() [all …]
|
D | nfs4xdr.c | 601 nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create) in nfsd4_decode_create() argument 606 create->cr_type = be32_to_cpup(p++); in nfsd4_decode_create() 607 switch (create->cr_type) { in nfsd4_decode_create() 610 create->cr_datalen = be32_to_cpup(p++); in nfsd4_decode_create() 611 READ_BUF(create->cr_datalen); in nfsd4_decode_create() 612 create->cr_data = svcxdr_dupstr(argp, p, create->cr_datalen); in nfsd4_decode_create() 613 if (!create->cr_data) in nfsd4_decode_create() 619 create->cr_specdata1 = be32_to_cpup(p++); in nfsd4_decode_create() 620 create->cr_specdata2 = be32_to_cpup(p++); in nfsd4_decode_create() 630 create->cr_namelen = be32_to_cpup(p++); in nfsd4_decode_create() [all …]
|
D | pnfs.h | 42 bool create, u32 layout_type, struct nfs4_layout_stateid **lsp);
|
D | xdr.h | 124 struct nfsd_createargs create; member
|
/linux-4.4.14/fs/nfs/ |
D | nfs3proc.c | 271 struct nfs3_createargs create; member 333 data->arg.create.fh = NFS_FH(dir); in nfs3_proc_create() 334 data->arg.create.name = dentry->d_name.name; in nfs3_proc_create() 335 data->arg.create.len = dentry->d_name.len; in nfs3_proc_create() 336 data->arg.create.sattr = sattr; in nfs3_proc_create() 338 data->arg.create.createmode = NFS3_CREATE_UNCHECKED; in nfs3_proc_create() 340 data->arg.create.createmode = NFS3_CREATE_EXCLUSIVE; in nfs3_proc_create() 341 data->arg.create.verifier[0] = cpu_to_be32(jiffies); in nfs3_proc_create() 342 data->arg.create.verifier[1] = cpu_to_be32(current->pid); in nfs3_proc_create() 356 switch (data->arg.create.createmode) { in nfs3_proc_create() [all …]
|
/linux-4.4.14/fs/efs/ |
D | file.c | 13 struct buffer_head *bh_result, int create) in efs_get_block() argument 18 if (create) in efs_get_block()
|
/linux-4.4.14/Documentation/dvb/ |
D | udev.txt | 23 So, create a new file /etc/udev/scripts/dvb.sh and add the following: 31 1. You need to create a proper udev rule that will create the device nodes 46 create the proper device node in your /dev/ directory.
|
/linux-4.4.14/drivers/staging/unisys/visorhba/ |
D | Kconfig | 11 to visorbus to create a HBA device, the probe function of 12 visorhba is called to create the scsi device.
|
/linux-4.4.14/drivers/hid/ |
D | uhid.c | 416 memcpy(event->u.create.name, compat->name, in uhid_event_from_user() 418 memcpy(event->u.create.phys, compat->phys, in uhid_event_from_user() 420 memcpy(event->u.create.uniq, compat->uniq, in uhid_event_from_user() 423 event->u.create.rd_data = compat_ptr(compat->rd_data); in uhid_event_from_user() 424 event->u.create.rd_size = compat->rd_size; in uhid_event_from_user() 426 event->u.create.bus = compat->bus; in uhid_event_from_user() 427 event->u.create.vendor = compat->vendor; in uhid_event_from_user() 428 event->u.create.product = compat->product; in uhid_event_from_user() 429 event->u.create.version = compat->version; in uhid_event_from_user() 430 event->u.create.country = compat->country; in uhid_event_from_user() [all …]
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
D | qxl_cmd.c | 382 struct qxl_surface_create *create; in qxl_io_create_primary() local 386 create = &qdev->ram_header->create_surface; in qxl_io_create_primary() 387 create->format = bo->surf.format; in qxl_io_create_primary() 388 create->width = bo->surf.width; in qxl_io_create_primary() 389 create->height = bo->surf.height; in qxl_io_create_primary() 390 create->stride = bo->surf.stride; in qxl_io_create_primary() 391 create->mem = qxl_bo_physical_address(qdev, bo, offset); in qxl_io_create_primary() 393 QXL_INFO(qdev, "%s: mem = %llx, from %p\n", __func__, create->mem, in qxl_io_create_primary() 396 create->flags = QXL_SURF_FLAG_KEEP_DATA; in qxl_io_create_primary() 397 create->type = QXL_SURF_TYPE_PRIMARY; in qxl_io_create_primary()
|
/linux-4.4.14/drivers/staging/unisys/visornic/ |
D | Kconfig | 11 to visorbus to create a network device, the probe function of 12 visornic is called to create the netdev device. Networking on
|
/linux-4.4.14/fs/jfs/ |
D | inode.c | 198 struct buffer_head *bh_result, int create) in jfs_get_block() argument 210 if (create) in jfs_get_block() 219 if (!create) in jfs_get_block() 247 if (!create) in jfs_get_block() 276 if (create) in jfs_get_block()
|
/linux-4.4.14/fs/minix/ |
D | itree_v1.c | 54 struct buffer_head *bh_result, int create) in V1_minix_get_block() argument 56 return get_block(inode, block, bh_result, create); in V1_minix_get_block()
|
D | itree_v2.c | 63 struct buffer_head *bh_result, int create) in V2_minix_get_block() argument 65 return get_block(inode, block, bh_result, create); in V2_minix_get_block()
|
D | itree_common.c | 146 struct buffer_head *bh, int create) in get_block() argument 171 if (!create || err == -EIO) { in get_block()
|
/linux-4.4.14/net/nfc/ |
D | af_nfc.c | 43 rc = proto_tab[proto]->create(net, sock, proto_tab[proto], kern); in nfc_sock_create() 54 .create = nfc_sock_create,
|
/linux-4.4.14/net/openvswitch/ |
D | Kconfig | 42 If you say Y here, then the Open vSwitch will be able create GRE 55 If you say Y here, then the Open vSwitch will be able create vxlan vport. 67 If you say Y here, then the Open vSwitch will be able create geneve vport.
|
D | vport-gre.c | 89 .create = gre_create,
|
D | vport-geneve.c | 116 .create = geneve_create,
|
D | vport-vxlan.c | 153 .create = vxlan_create,
|
D | vport.h | 137 struct vport *(*create)(const struct vport_parms *); member
|
/linux-4.4.14/fs/nilfs2/ |
D | alloc.c | 207 int create, in nilfs_palloc_get_block() argument 226 ret = nilfs_mdt_get_block(inode, blkoff, create, init_block, bhp); in nilfs_palloc_get_block() 271 int create, struct buffer_head **bhp) in nilfs_palloc_get_desc_block() argument 277 create, nilfs_palloc_desc_block_init, in nilfs_palloc_get_desc_block() 290 int create, struct buffer_head **bhp) in nilfs_palloc_get_bitmap_block() argument 296 create, NULL, bhp, in nilfs_palloc_get_bitmap_block() 324 int create, struct buffer_head **bhp) in nilfs_palloc_get_entry_block() argument 330 create, NULL, bhp, in nilfs_palloc_get_entry_block()
|
D | sufile.c | 102 int create, struct buffer_head **bhp) in nilfs_sufile_get_segment_usage_block() argument 106 create, NULL, bhp); in nilfs_sufile_get_segment_usage_block() 169 int create, size_t *ndone, in nilfs_sufile_updatev() argument 203 ret = nilfs_mdt_get_block(sufile, blkoff, create, NULL, &bh); in nilfs_sufile_updatev() 219 ret = nilfs_mdt_get_block(sufile, blkoff, create, NULL, &bh); in nilfs_sufile_updatev() 236 int nilfs_sufile_update(struct inode *sufile, __u64 segnum, int create, in nilfs_sufile_update() argument 255 ret = nilfs_sufile_get_segment_usage_block(sufile, segnum, create, &bh); in nilfs_sufile_update()
|
D | cpfile.c | 148 int create, in nilfs_cpfile_get_checkpoint_block() argument 153 create, nilfs_cpfile_block_init, bhp); in nilfs_cpfile_get_checkpoint_block() 228 int create, in nilfs_cpfile_get_checkpoint() argument 239 (cno < nilfs_mdt_cno(cpfile) && create))) in nilfs_cpfile_get_checkpoint() 247 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, create, &cp_bh); in nilfs_cpfile_get_checkpoint() 253 if (!create) { in nilfs_cpfile_get_checkpoint()
|
D | mdt.c | 248 int nilfs_mdt_get_block(struct inode *inode, unsigned long blkoff, int create, in nilfs_mdt_get_block() argument 257 ret = nilfs_mdt_read_block(inode, blkoff, !create, out_bh); in nilfs_mdt_get_block() 258 if (!create || ret != -ENOENT) in nilfs_mdt_get_block()
|
/linux-4.4.14/fs/gfs2/ |
D | bmap.c | 383 static inline void bmap_lock(struct gfs2_inode *ip, int create) in bmap_lock() argument 385 if (create) in bmap_lock() 391 static inline void bmap_unlock(struct gfs2_inode *ip, int create) in bmap_unlock() argument 393 if (create) in bmap_unlock() 604 struct buffer_head *bh_map, int create) in gfs2_block_map() argument 623 bmap_lock(ip, create); in gfs2_block_map() 627 trace_gfs2_bmap(ip, bh_map, lblock, create, 1); in gfs2_block_map() 662 trace_gfs2_bmap(ip, bh_map, lblock, create, ret); in gfs2_block_map() 663 bmap_unlock(ip, create); in gfs2_block_map() 668 if (!create) { in gfs2_block_map() [all …]
|
D | trace_gfs2.h | 436 sector_t lblock, int create, int errno), 438 TP_ARGS(ip, bh, lblock, create, errno), 447 __field( int, create ) 458 __entry->create = create; 468 __entry->state, __entry->create ? "create " : "nocreate",
|
D | bmap.h | 49 struct buffer_head *bh, int create);
|
D | meta_io.h | 59 int create);
|
D | meta_io.c | 114 struct buffer_head *gfs2_getbuf(struct gfs2_glock *gl, u64 blkno, int create) in gfs2_getbuf() argument 131 if (create) { in gfs2_getbuf()
|
/linux-4.4.14/drivers/net/ppp/ |
D | pppox.c | 121 rc = pppox_protos[protocol]->create(net, sock, kern); in pppox_create() 130 .create = pppox_create,
|
/linux-4.4.14/tools/perf/util/ |
D | rblist.c | 53 bool create) in __rblist__findnew() argument 72 if (create) { in __rblist__findnew()
|
D | intlist.c | 62 int i, bool create) in __intlist__findnew() argument 70 if (create) in __intlist__findnew()
|
/linux-4.4.14/Documentation/power/ |
D | swsusp-dmcrypt.txt | 12 You know how to create or how to modify an initrd. 41 Prepare your boot loader to use the initrd you will create or 50 Finally you need to create or modify your initrd. Lets assume 51 you create an initrd that reads the required dm-crypt setup 89 dmsetup create swap0 /mnt/swapkey > /dev/null 2>&1 && mapped=1
|
/linux-4.4.14/fs/f2fs/ |
D | data.c | 570 int create, int flag) in f2fs_map_blocks() argument 575 int mode = create ? ALLOC_NODE : LOOKUP_NODE_RA; in f2fs_map_blocks() 594 if (create) in f2fs_map_blocks() 607 if (create) { in f2fs_map_blocks() 664 if (create) { in f2fs_map_blocks() 704 if (create) in f2fs_map_blocks() 712 struct buffer_head *bh, int create, int flag) in __get_data_block() argument 720 ret = f2fs_map_blocks(inode, &map, create, flag); in __get_data_block() 730 struct buffer_head *bh_result, int create, int flag) in get_data_block() argument 732 return __get_data_block(inode, iblock, bh_result, create, flag); in get_data_block() [all …]
|
/linux-4.4.14/Documentation/EDID/ |
D | HOWTO.txt | 23 not contain code to create these data. In order to elucidate the origin 28 To create binary EDID and C source code files from the existing data 31 If you want to create your own EDID file, copy the file 1024x768.S,
|
/linux-4.4.14/tools/testing/selftests/efivarfs/ |
D | .gitignore | 1 create-read
|
D | Makefile | 3 test_objs = open-unlink create-read
|
D | efivarfs.sh | 76 ./create-read $file
|
/linux-4.4.14/arch/powerpc/platforms/pseries/ |
D | iommu.c | 941 struct ddw_create_response *create, int page_shift, in create_ddw() argument 963 ret = rtas_call(ddw_avail[1], 5, 4, (u32 *)create, in create_ddw() 971 window_shift, ret, create->liobn, create->addr_hi, create->addr_lo); in create_ddw() 998 struct ddw_create_response create; in enable_ddw() local 1095 ret = create_ddw(dev, ddw_avail, &create, page_shift, len); in enable_ddw() 1099 ddwprop->liobn = cpu_to_be32(create.liobn); in enable_ddw() 1100 ddwprop->dma_base = cpu_to_be64(((u64)create.addr_hi << 32) | in enable_ddw() 1101 create.addr_lo); in enable_ddw() 1106 create.liobn, dn->full_name); in enable_ddw()
|
/linux-4.4.14/sound/pci/ctxfi/ |
D | ctatc.c | 83 int (*create)(struct ct_atc *atc, member 88 [FRONT] = { .create = ct_alsa_pcm_create, 91 [SURROUND] = { .create = ct_alsa_pcm_create, 94 [CLFE] = { .create = ct_alsa_pcm_create, 97 [SIDE] = { .create = ct_alsa_pcm_create, 100 [IEC958] = { .create = ct_alsa_pcm_create, 104 [MIXER] = { .create = ct_alsa_mix_create, 113 int (*create)(struct hw *hw, void **rmgr); member 116 [SRC] = { .create = (create_t)src_mgr_create, 118 [SRCIMP] = { .create = (create_t)srcimp_mgr_create, [all …]
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | slog2.S | 32 | Step 0. If X < 0, create a NaN and raise the invalid operation 47 | Step 0. If X < 0, create a NaN and raise the invalid operation 61 | Step 0. If X < 0, create a NaN and raise the invalid operation 76 | Step 0. If X < 0, create a NaN and raise the invalid operation
|
/linux-4.4.14/Documentation/networking/ |
D | generic-hdlc.txt | 25 create a number of "hdlc" (hdlc0 etc) network devices, one for each 42 sethdlc hdlc0 create 99 92 * create n | delete n - adds / deletes PVC interface with DLCI #n. 95 * create ether n | delete ether n - adds a device for Ethernet-bridged
|
D | alias.txt | 14 Alias creation is done by 'magic' interface naming: eg. to create a
|
D | nfc.txt | 5 NFC device drivers development and to create an unified userspace interface. 113 To establish a connection with one target, the user must create an
|
D | sctp.txt | 17 The initial project goal is to create an Linux kernel reference implementation
|
/linux-4.4.14/drivers/video/logo/ |
D | logo_blackfin_clut224.ppm | 3 # gimp linux_bf.svg (create 80x80 save as linux_bf.ppm)
|
D | logo_blackfin_vga16.ppm | 3 # gimp linux_bf.svg (create 80x80 save as linux_bf.ppm)
|
/linux-4.4.14/Documentation/vm/ |
D | remap_file_pages.txt | 1 The remap_file_pages() system call is used to create a nonlinear mapping, 5 require the kernel to create additional VMA (Virtual Memory Area) data
|
/linux-4.4.14/drivers/vfio/ |
D | vfio_iommu_spapr_tce.c | 969 struct vfio_iommu_spapr_tce_create create; in tce_iommu_ioctl() local 980 if (copy_from_user(&create, (void __user *)arg, minsz)) in tce_iommu_ioctl() 983 if (create.argsz < minsz) in tce_iommu_ioctl() 986 if (create.flags) in tce_iommu_ioctl() 991 ret = tce_iommu_create_window(container, create.page_shift, in tce_iommu_ioctl() 992 create.window_size, create.levels, in tce_iommu_ioctl() 993 &create.start_addr); in tce_iommu_ioctl() 997 if (!ret && copy_to_user((void __user *)arg, &create, minsz)) in tce_iommu_ioctl()
|
/linux-4.4.14/arch/arm/boot/dts/ |
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-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 | 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
|
/linux-4.4.14/Documentation/scsi/ |
D | scsi_fc_transport.txt | 57 to create vports. The transport will create the vport object within the 59 virtual port. Typically, the driver will create a new scsi_host instance 64 Note: At this time, the transport is written to create only NPIV-based 158 Reflects the FC mechanism used to create the virtual port. 173 A "simple" create interface to instantiate a vport on an fc_host. 175 then instantiates the vport object and calls the LLDD to create the 222 to create the vport. This state will persist until the vport is 312 When a request is made to create a new vport (via sgio/netlink, or the 315 If not, the create request will be failed. If space remains, the transport 316 will increment the vport count, create the vport object, and then call the [all …]
|
D | osst.txt | 35 devices. If those are not present, you may create them by calling 58 depending on your choice during kernel config. You may still need to create 71 You may find it convenient to create a symbolic link 189 # Script to create OnStream SC-x0 device nodes (major 206)
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | idmapper.txt | 31 create id_resolver * * /usr/sbin/nfs.idmap %k %d 600 50 create id_resolver uid:* * /some/other/program %k %d 600 51 create id_resolver * * /usr/sbin/nfs.idmap %k %d 600
|
D | nfsroot.txt | 206 When building kernels, an easy way to create a boot floppy that uses 217 For more information on syslinux, including how to create bootdisks 227 When building kernels, an easy way to create a bootable cdrom that 242 For more information on isolinux, including how to create bootdisks 250 However, to use the 'root=' directive you also need to create 289 For more information on isolinux, including how to create bootdisks
|
D | Exporting | 111 to find or create a dentry for the same object. The default 118 create a dentry for it (possibly with d_obtain_alias). 122 implied object and create a dentry for it (possibly with
|
D | rpc-cache.txt | 58 references create by 'cache_init' and, if CACHE_VALID 101 entry is found, a new entry will be create, added to the cache, and 111 typically embedded in the actual request and can be used to create a 146 should be create or updated to have the given content, and the
|
D | nfsd-admin-interfaces.txt | 21 If nfsd is started without doing any of these, then it will create one
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-pktcdvd | 16 to create a new pktcdvd device and map 64 # create a new pktcdvd device mapped to /dev/hdc
|
D | configfs-usb-gadget-ffs | 4 Description: The purpose of this directory is to create and remove it.
|
D | evm | 15 can not create or validate the 'security.evm' xattr, but
|
/linux-4.4.14/include/media/ |
D | v4l2-mem2mem.h | 126 struct v4l2_create_buffers *create); 265 struct v4l2_create_buffers *create);
|
D | videobuf2-v4l2.h | 56 int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create);
|
/linux-4.4.14/include/net/9p/ |
D | transport.h | 58 int (*create)(struct p9_client *, const char *, char *); member
|
/linux-4.4.14/include/linux/ |
D | smpboot.h | 37 void (*create)(unsigned int cpu); member
|
D | if_pppox.h | 77 int (*create)(struct net *net, struct socket *sock, int kern); member
|
D | zpool.h | 86 void *(*create)(const char *name, member
|
/linux-4.4.14/fs/hfsplus/ |
D | extents.c | 221 struct buffer_head *bh_result, int create) in hfsplus_get_block() argument 235 if (iblock > hip->fs_blocks || !create) in hfsplus_get_block() 243 create = 0; in hfsplus_get_block() 279 if (create) { in hfsplus_get_block() 285 if (create || was_dirty) in hfsplus_get_block()
|
/linux-4.4.14/drivers/block/zram/ |
D | zcomp_lz4.c | 63 .create = zcomp_lz4_create,
|
D | zcomp_lzo.c | 63 .create = lzo_create,
|
D | zcomp.h | 36 void *(*create)(void); member
|
/linux-4.4.14/net/ipv4/ |
D | inetpeer.c | 405 int create) in inet_getpeer() argument 425 if (!create && !invalidated) in inet_getpeer() 441 if (gccnt && create) in inet_getpeer() 444 p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL; in inet_getpeer()
|
/linux-4.4.14/Documentation/infiniband/ |
D | ipoib.txt | 13 port using the P_Key at index 0. To create an interface with a 19 This will create an interface named ib0.8001 with P_Key 0x8001. To 27 Child interface create/delete can also be done using IPoIB's
|
D | user_verbs.txt | 58 To create the appropriate character device files automatically with 63 can be used. This will create device nodes named
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_resource_priv.h | 75 int (*create) (struct vmw_resource *res); member
|
/linux-4.4.14/tools/perf/scripts/perl/Perf-Trace-Util/ |
D | README | 22 perl Makefile.PL # to create a Makefile for the next step 23 make # to create Context.c
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-mem2mem.c | 460 struct v4l2_create_buffers *create) in v4l2_m2m_create_bufs() argument 464 vq = v4l2_m2m_get_vq(m2m_ctx, create->format.type); in v4l2_m2m_create_bufs() 465 return vb2_create_bufs(vq, create); in v4l2_m2m_create_bufs() 800 struct v4l2_create_buffers *create) in v4l2_m2m_ioctl_create_bufs() argument 804 return v4l2_m2m_create_bufs(file, fh->m2m_ctx, create); in v4l2_m2m_ioctl_create_bufs()
|
D | videobuf2-v4l2.c | 526 int vb2_create_bufs(struct vb2_queue *q, struct v4l2_create_buffers *create) in vb2_create_bufs() argument 528 int ret = vb2_verify_memory_type(q, create->memory, in vb2_create_bufs() 529 create->format.type); in vb2_create_bufs() 531 create->index = q->num_buffers; in vb2_create_bufs() 532 if (create->count == 0) in vb2_create_bufs() 534 return ret ? ret : vb2_core_create_bufs(q, create->memory, in vb2_create_bufs() 535 &create->count, &create->format); in vb2_create_bufs()
|
/linux-4.4.14/drivers/md/ |
D | dm-path-selector.h | 40 int (*create) (struct path_selector *ps, unsigned argc, char **argv); member
|
D | dm-cache-policy.h | 255 struct dm_cache_policy *(*create)(dm_cblock_t cache_size, member
|
D | dm-cache-policy.c | 125 p = type->create(cache_size, origin_size, cache_block_size); in dm_cache_policy_create()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | priv.h | 22 int (*create)(struct nvkm_mmu *, u64 offset, u64 length, u64 mm_offset, member
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | msi-pic.txt | 92 In a virtualized environment, the hypervisor may need to create an IOMMU 108 restrictions, it is usually impossible to create a 4KB subwindow that 111 Therefore, the hypervisor has to create a subwindow inside the same
|
/linux-4.4.14/drivers/staging/fsl-mc/bus/ |
D | Kconfig | 17 to dynamically create networking hardware objects such as
|
/linux-4.4.14/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 58 module_param_call(create, fcoe_transport_create, NULL, 60 __MODULE_PARM_TYPE(create, "string"); 61 MODULE_PARM_DESC(create, " Creates fcoe instance on an ethernet interface"); 885 rc = ft->create ? ft->create(netdev, fip_mode) : -ENODEV; in fcoe_transport_create()
|
/linux-4.4.14/fs/freevxfs/ |
D | vxfs_subr.c | 130 struct buffer_head *bp, int create) in vxfs_getblk() argument
|
/linux-4.4.14/fs/hpfs/ |
D | file.c | 76 …int hpfs_get_block(struct inode *inode, sector_t iblock, struct buffer_head *bh_result, int create) in hpfs_get_block() argument 95 if (!create) goto ret_0; in hpfs_get_block()
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | cachefiles.txt | 166 Do not create, rename or unlink files and directories in the cache whilst the 175 Do not create files or directories in the cache, lest the cache get confused or 233 The CacheFiles module will create two directories in the directory it was 333 that as the security label with which it will create files. By default, 358 The module's security ID gives it permission to create, move and remove files 366 data cached therein; nor is it permitted to create new files in the cache. 419 Furthermore, should CacheFiles create a file or directory, the security 444 for CacheFiles to run in a context of a specific security label, or to create 472 CREATES Length of time to perform a create on the backing fs
|
/linux-4.4.14/net/802/ |
D | fc.c | 79 .create = fc_header,
|
D | hippi.c | 161 .create = hippi_header,
|
D | fddi.c | 154 .create = fddi_header,
|
/linux-4.4.14/fs/hfs/ |
D | extent.c | 333 struct buffer_head *bh_result, int create) in hfs_get_block() argument 344 if (block > HFS_I(inode)->fs_blocks || !create) in hfs_get_block() 352 create = 0; in hfs_get_block() 375 if (create) { in hfs_get_block()
|
/linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ |
D | sec_config.c | 494 int create) in sptlrpc_conf_get_tgt() argument 503 if (!create) in sptlrpc_conf_get_tgt() 518 int create) in sptlrpc_conf_get() argument 527 if (!create) in sptlrpc_conf_get()
|
/linux-4.4.14/tools/perf/Documentation/ |
D | itrace.txt | 7 d create a debug log
|
/linux-4.4.14/crypto/ |
D | algboss.c | 74 if (tmpl->create) { in cryptomgr_probe() 75 err = tmpl->create(tmpl, param->tb); in cryptomgr_probe()
|
/linux-4.4.14/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 6 you can create fake NUMA nodes that represent contiguous chunks of memory and 65 cpusets. Since cpusets can form a hierarchy, you can create some pretty
|
/linux-4.4.14/drivers/net/wireless/ath/ar5523/ |
D | ar5523.c | 1241 struct ar5523_cmd_create_connection create; in ar5523_create_connection() local 1244 memset(&create, 0, sizeof(create)); in ar5523_create_connection() 1245 create.connid = cpu_to_be32(2); in ar5523_create_connection() 1246 create.bssid = cpu_to_be32(0); in ar5523_create_connection() 1248 create.size = cpu_to_be32(sizeof(struct ar5523_cmd_rateset)); in ar5523_create_connection() 1250 ar5523_create_rateset(ar, bss, &create.connattr.rateset, false); in ar5523_create_connection() 1253 create.connattr.wlanmode = cpu_to_be32(wlan_mode); in ar5523_create_connection() 1255 return ar5523_cmd_write(ar, WDCMSG_CREATE_CONNECTION, &create, in ar5523_create_connection() 1256 sizeof(create), 0); in ar5523_create_connection()
|
/linux-4.4.14/Documentation/i2c/ |
D | upgrading-clients | 37 dev_err(dev, "failed to create our state\n"); 190 dev_err(dev, "failed to create our state\n"); 241 dev_err(dev, "failed to create our state\n");
|
/linux-4.4.14/fs/ocfs2/ |
D | aops.h | 61 struct buffer_head *bh_result, int create);
|
D | aops.c | 57 struct buffer_head *bh_result, int create) in ocfs2_symlink_get_block() argument 69 (unsigned long long)iblock, bh_result, create); in ocfs2_symlink_get_block() 138 struct buffer_head *bh_result, int create) in ocfs2_get_block() argument 147 (unsigned long long)iblock, bh_result, create); in ocfs2_get_block() 155 err = ocfs2_symlink_get_block(inode, iblock, bh_result, create); in ocfs2_get_block() 182 if (create && p_blkno == 0 && ocfs2_sparse_alloc(osb)) { in ocfs2_get_block() 212 if (create && (iblock >= past_eof)) in ocfs2_get_block() 516 struct buffer_head *bh_result, int create) in ocfs2_direct_IO_get_blocks() argument 552 BUG_ON(create && (ext_flags & OCFS2_EXT_REFCOUNTED)); in ocfs2_direct_IO_get_blocks() 555 if (!p_blkno && create) { in ocfs2_direct_IO_get_blocks()
|
/linux-4.4.14/Documentation/devicetree/bindings/mips/ |
D | cpu_irq.txt | 4 IRQs from a devicetree file and create a irq_domain for IRQ controller.
|
/linux-4.4.14/Documentation/devicetree/ |
D | overlay-notes.txt | 92 1. Call of_overlay_create() to create and apply an overlay. The return value 119 node-a { /* add to an existing, or create a node-a */
|
/linux-4.4.14/drivers/tty/hvc/ |
D | Kconfig | 87 This console uses the JTAG DCC on ARM to create a console under the HVC 96 This console uses the Blackfin JTAG to create a console under the
|
/linux-4.4.14/net/sunrpc/ |
D | auth_null.c | 109 .create = nul_create,
|
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/ |
D | ldlm_lib.c | 58 int priority, int create) in import_set_conn() argument 64 if (!create && !priority) { in import_set_conn() 75 if (create) { in import_set_conn() 101 if (create) { in import_set_conn()
|
/linux-4.4.14/drivers/sh/intc/ |
D | Kconfig | 38 This will create a debugfs entry for showing the relationship
|
/linux-4.4.14/tools/testing/selftests/zram/ |
D | README | 22 zram_lib.sh: create library with initialization/cleanup functions
|
/linux-4.4.14/net/rose/ |
D | rose_dev.c | 122 .create = rose_header,
|
/linux-4.4.14/drivers/usb/image/ |
D | Kconfig | 12 To use it create a device node with "mknod /dev/mustek c 180 32" and
|
/linux-4.4.14/Documentation/devicetree/bindings/gpio/ |
D | gpio-mm-lantiq.txt | 3 By attaching hardware latches to the EBU it is possible to create output
|
/linux-4.4.14/drivers/staging/android/ion/ |
D | Kconfig | 17 Choose this option to create a device that can be used to test the
|
/linux-4.4.14/drivers/staging/iio/Documentation/ |
D | trigger.txt | 4 an IIO device. Whilst this can create device specific complexities
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/ |
D | gmac.h | 134 struct cmac *(*create)(adapter_t *adapter, int index); member
|
D | cphy.h | 159 struct cphy *(*create)(struct net_device *dev, int phy_addr, member
|
/linux-4.4.14/Documentation/security/ |
D | SELinux.txt | 23 Step 4 will create a new dummy policy valid for your
|
/linux-4.4.14/Documentation/aoe/ |
D | udev.txt | 1 # These rules tell udev what device nodes to create for aoe support.
|
/linux-4.4.14/Documentation/acpi/ |
D | method-customizing.txt | 12 2. insert a completely new method in order to create a missing 54 We just need to create the ASL code of the method we want to
|
/linux-4.4.14/Documentation/ |
D | initrd.txt | 84 involve special block devices or loopbacks; you merely create a directory on 109 procedure should create the /initrd directory. 122 Third, you have to create the RAM disk image. This is done by creating a 134 2) create an empty file system of the appropriate size, e.g. 140 4) create the console device: 162 can try the experimental newlib environment [2] to create a small 343 mechanism, you may create both /linuxrc and /sbin/init in your initrd image.
|
D | phy.txt | 53 The PHY driver should create the PHY in order for other peripheral controllers 54 to make use of it. The PHY framework provides 2 APIs to create the PHY. 61 The PHY drivers can use one of the above 2 APIs to create the PHY by passing
|
D | CodeOfConflict | 11 to create the most robust operating system kernel ever, and we do not
|
D | kobject.txt | 45 We'll look at how to create and manipulate all of these types. A bottom-up 51 It is rare for kernel code to create a standalone kobject, with one major 213 Sometimes all that a developer wants is a way to create a simple directory 216 exception where a single kobject should be created. To create such an 221 This function will create a kobject and place it in sysfs in the location 222 underneath the specified parent kobject. To create simple attributes 337 created and never declared statically or on the stack. To create a new
|
/linux-4.4.14/net/8021q/ |
D | Kconfig | 8 Select this and you will be able to create 802.1Q VLAN interfaces
|
/linux-4.4.14/Documentation/block/ |
D | cmdline-partition.txt | 27 partition name, kernel send uevent with "PARTNAME". application can create
|
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/ |
D | htc-ops.h | 25 return ar->htc_ops->create(ar); in ath6kl_htc_create()
|
/linux-4.4.14/drivers/rapidio/switches/ |
D | idt_gen2.c | 393 static int idtg2_sysfs(struct rio_dev *rdev, bool create) in idtg2_sysfs() argument 398 if (create) { in idtg2_sysfs()
|
/linux-4.4.14/fs/fat/ |
D | cache.c | 305 unsigned long *mapped_blocks, int create) in fat_bmap() argument 326 if (!create) in fat_bmap()
|
/linux-4.4.14/fs/adfs/ |
D | inode.c | 20 int create) in adfs_get_block() argument 22 if (!create) { in adfs_get_block()
|
D | adfs.h | 133 int (*create)(struct adfs_dir *dir, struct object_info *obj); member
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | ps3.h | 110 int (*create)(struct ps3_dma_region *); member 165 int (*create)(struct ps3_mmio_region *); member
|
/linux-4.4.14/Documentation/rapidio/ |
D | sysfs.txt | 25 NOTE: An enumerating or discovering endpoint does not create a sysfs entry for 58 Currently Linux RapidIO subsystem does not create any endpoint specific sysfs 68 integrated into the RapidIO subsystem, it offers a method to create
|
/linux-4.4.14/fs/affs/ |
D | file.c | 294 affs_get_block(struct inode *inode, sector_t block, struct buffer_head *bh_result, int create) in affs_get_block() argument 306 if (block > AFFS_I(inode)->i_blkcnt || !create) in affs_get_block() 309 create = 0; in affs_get_block() 321 if (create) { in affs_get_block() 444 affs_bread_ino(struct inode *inode, int block, int create) in affs_bread_ino() argument 450 err = affs_get_block(inode, block, &tmp_bh, create); in affs_bread_ino()
|
D | dir.c | 31 .create = affs_create,
|
/linux-4.4.14/include/linux/sunrpc/ |
D | rpc_pipe_fs.h | 22 int (*create)(struct dentry *dir, member
|
D | auth.h | 119 struct rpc_auth * (*create)(struct rpc_auth_create_args *, struct rpc_clnt *); member
|
/linux-4.4.14/Documentation/devicetree/bindings/misc/ |
D | fsl,qoriq-mc.txt | 8 blocks that can be used to create functional hardware objects/devices
|
/linux-4.4.14/Documentation/hwmon/ |
D | sch5636 | 16 hardware monitoring solutions, allowing motherboard manufacturers to create
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 81 Used to create object. 83 already created, it will create them automatically. Each object has 88 @size - size of the all data structures needed to create a path
|
/linux-4.4.14/Documentation/blockdev/ |
D | ramdisk.txt | 95 So to create disk one of the set, you would do: 110 To create a RAM disk image, you will need a spare block device to 123 the unused blocks of the image that you are about to create.
|
/linux-4.4.14/arch/s390/kvm/ |
D | Kconfig | 49 Allow CAP_SYS_ADMIN users to create KVM virtual machines that are
|
/linux-4.4.14/drivers/md/persistent-data/ |
D | dm-transaction-manager.c | 399 int create, in dm_tm_create_internal() argument 414 if (create) { in dm_tm_create_internal()
|
/linux-4.4.14/Documentation/devicetree/bindings/reserved-memory/ |
D | reserved-memory.txt | 5 one can create child nodes describing particular reserved (excluded from 56 - Indicates the operating system must not create a virtual mapping
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | atmel,at91-pinctrl.txt | 26 How to create such array: 112 create the map table.
|
/linux-4.4.14/drivers/i2c/ |
D | i2c-stub.c | 99 u8 command, bool create) in stub_find_block() argument 109 if (rb == NULL && create) { in stub_find_block()
|
/linux-4.4.14/fs/omfs/ |
D | file.c | 218 struct buffer_head *bh_result, int create) in omfs_get_block() argument 272 if (create) { in omfs_get_block()
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-design-CFS.txt | 217 create arbitrary groups of tasks, using the "cgroup" pseudo filesystem. See 221 group created using the pseudo filesystem. See example steps below to create 229 # mkdir multimedia # create "multimedia" group of tasks 230 # mkdir browser # create "browser" group of tasks
|
/linux-4.4.14/tools/usb/usbip/ |
D | INSTALL | 20 those values to create a `Makefile' in each directory of the package. 21 It may also create one or more `.h' files containing system-dependent 40 The file `configure.ac' (or `configure.in') is used to create 175 can create a site shell script called `config.site' that gives default
|
/linux-4.4.14/drivers/staging/fsl-mc/ |
D | README.txt | 34 network ports to create functional objects/devices such as network 46 | (create,discover,connect 72 The MC mediates operations such as create, discover, 132 that can be used to create/destroy containers and objects
|
/linux-4.4.14/drivers/char/ |
D | Kconfig | 170 the port which can be used by udev scripts to create a 199 If you say Y here and create a character device node /dev/nwbutton 235 If you say Y here and create a character device /dev/flash with 252 If you say Y here and create a character special file /dev/nvram 285 If you say Y here and create a character special file /dev/rtc with 311 If you say Y here and create a character special file /dev/rtc with 333 If you say Y here and create a character special file /dev/rtc with 362 If you say Y here and create a character special file /dev/rtc with
|
/linux-4.4.14/net/netrom/ |
D | nr_dev.c | 160 .create = nr_header,
|
/linux-4.4.14/include/uapi/linux/ |
D | uhid.h | 183 struct uhid_create_req create; member
|
/linux-4.4.14/fs/ |
D | bad_inode.c | 128 .create = bad_inode_create,
|
/linux-4.4.14/Documentation/early-userspace/ |
D | README | 30 You can create a cpio archive that contains the early userspace image. 40 a way to create images with root-owned files even though the image was 61 can create a 'root-image' directory and install all files into it.
|
/linux-4.4.14/drivers/mtd/nand/ |
D | nand_bbt.c | 840 int i, chips, writeops, create, chipsel, res, res2; in check_create() local 854 create = 0; in check_create() 863 create = 1; in check_create() 884 create = 1; in check_create() 891 if (create) { in check_create()
|
/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | mm.c | 1108 .create = dma_sb_region_create, 1115 .create = dma_sb_region_create_linear, 1122 .create = dma_ioc0_region_create, 1165 BUG_ON(!r->region_ops->create); in ps3_dma_region_create() 1166 return r->region_ops->create(r); in ps3_dma_region_create()
|
/linux-4.4.14/drivers/staging/sm750fb/ |
D | readme | 19 it will create fb0 and fb1 (or fb1,fb2 if fb0 already exist) under /dev
|
/linux-4.4.14/drivers/power/reset/ |
D | Kconfig | 58 create a binding in your devicetree. 66 create a binding in your devicetree.
|
/linux-4.4.14/tools/build/Documentation/ |
D | Build.txt | 63 The build framework does not create the 'ex' and 'libex.a' binaries for you, it 93 It's only a matter of 2 single commands to create the final binaries:
|
/linux-4.4.14/drivers/staging/lustre/lnet/selftest/ |
D | console.c | 72 lstcon_node_find(lnet_process_id_t id, lstcon_node_t **ndpp, int create) in lstcon_node_find() argument 89 if (!create) in lstcon_node_find() 140 lnet_process_id_t id, lstcon_ndlink_t **ndlpp, int create) in lstcon_ndlink_find() argument 160 if (create == 0) in lstcon_ndlink_find() 164 rc = lstcon_node_find(id, &nd, (create == 1) ? 1 : 0); in lstcon_ndlink_find() 288 lstcon_ndlink_t **ndlpp, int create) in lstcon_group_ndlink_find() argument 292 rc = lstcon_ndlink_find(&grp->grp_ndl_hash[0], id, ndlpp, create); in lstcon_group_ndlink_find()
|
/linux-4.4.14/net/decnet/ |
D | dn_table.c | 575 goto create; in dn_fib_table_insert() 616 create: in dn_fib_table_insert() 833 struct dn_fib_table *dn_fib_get_table(u32 n, int create) in dn_fib_get_table() argument 854 if (!create) in dn_fib_get_table()
|