/linux-4.4.14/sound/soc/intel/common/ |
D | sst-ipc.c | 42 static struct ipc_message *msg_get_empty(struct sst_generic_ipc *ipc) in msg_get_empty() argument 46 if (!list_empty(&ipc->empty_list)) { in msg_get_empty() 47 msg = list_first_entry(&ipc->empty_list, struct ipc_message, in msg_get_empty() 55 static int tx_wait_done(struct sst_generic_ipc *ipc, in tx_wait_done() argument 65 spin_lock_irqsave(&ipc->dsp->spinlock, flags); in tx_wait_done() 67 if (ipc->ops.shim_dbg != NULL) in tx_wait_done() 68 ipc->ops.shim_dbg(ipc, "message timeout"); in tx_wait_done() 80 list_add_tail(&msg->list, &ipc->empty_list); in tx_wait_done() 81 spin_unlock_irqrestore(&ipc->dsp->spinlock, flags); in tx_wait_done() 85 static int ipc_tx_message(struct sst_generic_ipc *ipc, u64 header, in ipc_tx_message() argument [all …]
|
D | sst-ipc.h | 78 int sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc, u64 header, 81 int sst_ipc_tx_message_nowait(struct sst_generic_ipc *ipc, u64 header, 84 struct ipc_message *sst_ipc_reply_find_msg(struct sst_generic_ipc *ipc, 87 void sst_ipc_tx_msg_reply_complete(struct sst_generic_ipc *ipc, 90 void sst_ipc_drop_all(struct sst_generic_ipc *ipc); 91 int sst_ipc_init(struct sst_generic_ipc *ipc); 92 void sst_ipc_fini(struct sst_generic_ipc *ipc);
|
D | Makefile | 3 snd-soc-sst-ipc-objs := sst-ipc.o 9 obj-$(CONFIG_SND_SOC_INTEL_SST) += snd-soc-sst-dsp.o snd-soc-sst-ipc.o
|
/linux-4.4.14/sound/soc/intel/skylake/ |
D | skl-sst-ipc.c | 267 static void skl_ipc_tx_msg(struct sst_generic_ipc *ipc, struct ipc_message *msg) in skl_ipc_tx_msg() argument 272 sst_dsp_outbox_write(ipc->dsp, msg->tx_data, msg->tx_size); in skl_ipc_tx_msg() 273 sst_dsp_shim_write_unlocked(ipc->dsp, SKL_ADSP_REG_HIPCIE, in skl_ipc_tx_msg() 275 sst_dsp_shim_write_unlocked(ipc->dsp, SKL_ADSP_REG_HIPCI, in skl_ipc_tx_msg() 279 static struct ipc_message *skl_ipc_reply_get_msg(struct sst_generic_ipc *ipc, in skl_ipc_reply_get_msg() argument 285 if (list_empty(&ipc->rx_list)) { in skl_ipc_reply_get_msg() 286 dev_err(ipc->dev, "ipc: rx list is empty but received 0x%x\n", in skl_ipc_reply_get_msg() 291 msg = list_first_entry(&ipc->rx_list, struct ipc_message, list); in skl_ipc_reply_get_msg() 298 static int skl_ipc_process_notification(struct sst_generic_ipc *ipc, in skl_ipc_process_notification() argument 301 struct skl_sst *skl = container_of(ipc, struct skl_sst, ipc); in skl_ipc_process_notification() [all …]
|
D | skl-sst-ipc.h | 57 struct sst_generic_ipc ipc; member 100 int skl_ipc_save_pipeline(struct sst_generic_ipc *ipc, 103 int skl_ipc_restore_pipeline(struct sst_generic_ipc *ipc, u8 instance_id); 111 int skl_ipc_set_dx(struct sst_generic_ipc *ipc, 114 int skl_ipc_set_large_config(struct sst_generic_ipc *ipc, 123 void skl_ipc_free(struct sst_generic_ipc *ipc);
|
D | Makefile | 7 snd-soc-skl-ipc-objs := skl-sst-ipc.o skl-sst-dsp.o skl-sst-cldma.o \ 10 obj-$(CONFIG_SND_SOC_INTEL_SKYLAKE) += snd-soc-skl-ipc.o
|
D | skl-sst.c | 177 ret = skl_ipc_set_dx(&skl->ipc, SKL_INSTANCE_ID, SKL_BASE_FW_MODULE_ID, &dx); in skl_set_dsp_D3() 270 skl_ipc_free(&skl->ipc); in skl_sst_dsp_init() 277 skl_ipc_free(&ctx->ipc); in skl_sst_dsp_cleanup()
|
D | skl-messages.c | 72 skl_ipc_set_large_config(&ctx->ipc, &msg, (u32 *)&mask); in skl_dsp_enable_notification() 647 ret = skl_ipc_init_instance(&ctx->ipc, &msg, param_data); in skl_init_module() 723 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg); in skl_unbind_modules() 781 ret = skl_ipc_bind_unbind(&ctx->ipc, &msg); in skl_bind_modules() 799 return skl_ipc_set_pipeline_state(&ctx->ipc, pipe->ppl_id, state); in skl_set_pipe_state() 814 ret = skl_ipc_create_pipeline(&ctx->ipc, pipe->memory_pages, in skl_create_pipeline() 852 ret = skl_ipc_delete_pipeline(&ctx->ipc, pipe->ppl_id); in skl_delete_pipe()
|
/linux-4.4.14/sound/soc/intel/baytrail/ |
D | sst-baytrail-ipc.c | 182 struct sst_generic_ipc ipc; member 254 msg = sst_ipc_reply_find_msg(&byt->ipc, header); in sst_byt_process_reply() 268 sst_ipc_tx_msg_reply_complete(&byt->ipc, msg); in sst_byt_process_reply() 315 struct sst_generic_ipc *ipc = &byt->ipc; in sst_byt_irq_thread() local 347 queue_kthread_work(&ipc->kworker, &ipc->kwork); in sst_byt_irq_thread() 434 ret = sst_ipc_tx_message_wait(&byt->ipc, header, str_req, in sst_byt_stream_commit() 458 ret = sst_ipc_tx_message_wait(&byt->ipc, header, NULL, 0, NULL, 0); in sst_byt_stream_free() 482 return sst_ipc_tx_message_wait(&byt->ipc, header, NULL, in sst_byt_stream_operations() 485 return sst_ipc_tx_message_nowait(&byt->ipc, header, in sst_byt_stream_operations() 506 ret = sst_ipc_tx_message_nowait(&byt->ipc, header, tx_msg, size); in sst_byt_stream_start() [all …]
|
D | Makefile | 2 sst-baytrail-ipc.o sst-baytrail-pcm.o sst-baytrail-dsp.o
|
/linux-4.4.14/ipc/ |
D | util.c | 154 struct kern_ipc_perm *ipc; in ipc_findkey() local 159 ipc = idr_find(&ids->ipcs_idr, next_id); in ipc_findkey() 161 if (ipc == NULL) in ipc_findkey() 164 if (ipc->key != key) { in ipc_findkey() 170 ipc_lock_object(ipc); in ipc_findkey() 171 return ipc; in ipc_findkey() 185 struct kern_ipc_perm *ipc; in ipc_get_maxid() local 198 ipc = idr_find(&ids->ipcs_idr, id); in ipc_get_maxid() 199 if (ipc != NULL) { in ipc_get_maxid() 749 struct kern_ipc_perm *ipc; in sysvipc_find_ipc() local [all …]
|
D | syscall.c | 16 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second, in SYSCALL_DEFINE6() argument
|
D | shm.c | 792 struct kern_ipc_perm *ipc; in shm_get_stat() local 795 ipc = idr_find(&shm_ids(ns).ipcs_idr, next_id); in shm_get_stat() 796 if (ipc == NULL) in shm_get_stat() 798 shp = container_of(ipc, struct shmid_kernel, shm_perm); in shm_get_stat()
|
D | compat.c | 329 COMPAT_SYSCALL_DEFINE6(ipc, u32, call, int, first, int, second, in COMPAT_SYSCALL_DEFINE6() argument
|
/linux-4.4.14/net/ipv4/ |
D | raw.c | 490 struct ipcm_cookie ipc; in raw_sendmsg() local 541 ipc.addr = inet->inet_saddr; in raw_sendmsg() 542 ipc.opt = NULL; in raw_sendmsg() 543 ipc.tx_flags = 0; in raw_sendmsg() 544 ipc.ttl = 0; in raw_sendmsg() 545 ipc.tos = -1; in raw_sendmsg() 546 ipc.oif = sk->sk_bound_dev_if; in raw_sendmsg() 549 err = ip_cmsg_send(net, msg, &ipc, false); in raw_sendmsg() 551 kfree(ipc.opt); in raw_sendmsg() 554 if (ipc.opt) in raw_sendmsg() [all …]
|
D | ping.c | 702 struct ipcm_cookie ipc; in ping_v4_sendmsg() local 738 ipc.addr = inet->inet_saddr; in ping_v4_sendmsg() 739 ipc.opt = NULL; in ping_v4_sendmsg() 740 ipc.oif = sk->sk_bound_dev_if; in ping_v4_sendmsg() 741 ipc.tx_flags = 0; in ping_v4_sendmsg() 742 ipc.ttl = 0; in ping_v4_sendmsg() 743 ipc.tos = -1; in ping_v4_sendmsg() 745 sock_tx_timestamp(sk, &ipc.tx_flags); in ping_v4_sendmsg() 748 err = ip_cmsg_send(sock_net(sk), msg, &ipc, false); in ping_v4_sendmsg() 750 kfree(ipc.opt); in ping_v4_sendmsg() [all …]
|
D | icmp.c | 356 struct ipcm_cookie *ipc, struct rtable **rt) in icmp_push_reply() argument 365 ipc, rt, MSG_DONTWAIT) < 0) { in icmp_push_reply() 391 struct ipcm_cookie ipc; in icmp_reply() local 412 daddr = ipc.addr = ip_hdr(skb)->saddr; in icmp_reply() 414 ipc.opt = NULL; in icmp_reply() 415 ipc.tx_flags = 0; in icmp_reply() 416 ipc.ttl = 0; in icmp_reply() 417 ipc.tos = -1; in icmp_reply() 420 ipc.opt = &icmp_param->replyopts.opt; in icmp_reply() 421 if (ipc.opt->opt.srr) in icmp_reply() [all …]
|
D | udp.c | 886 struct ipcm_cookie ipc; in udp_sendmsg() local 909 ipc.opt = NULL; in udp_sendmsg() 910 ipc.tx_flags = 0; in udp_sendmsg() 911 ipc.ttl = 0; in udp_sendmsg() 912 ipc.tos = -1; in udp_sendmsg() 960 ipc.addr = inet->inet_saddr; in udp_sendmsg() 962 ipc.oif = sk->sk_bound_dev_if; in udp_sendmsg() 964 sock_tx_timestamp(sk, &ipc.tx_flags); in udp_sendmsg() 967 err = ip_cmsg_send(sock_net(sk), msg, &ipc, in udp_sendmsg() 970 kfree(ipc.opt); in udp_sendmsg() [all …]
|
D | ip_output.c | 1116 struct ipcm_cookie *ipc, struct rtable **rtp) in ip_setup_cork() argument 1124 opt = ipc->opt; in ip_setup_cork() 1134 cork->addr = ipc->addr; in ip_setup_cork() 1147 cork->ttl = ipc->ttl; in ip_setup_cork() 1148 cork->tos = ipc->tos; in ip_setup_cork() 1149 cork->priority = ipc->priority; in ip_setup_cork() 1150 cork->tx_flags = ipc->tx_flags; in ip_setup_cork() 1170 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_append_data() argument 1180 err = ip_setup_cork(sk, &inet->cork.base, ipc, rtp); in ip_append_data() 1492 struct ipcm_cookie *ipc, struct rtable **rtp, in ip_make_skb() argument [all …]
|
D | ip_sockglue.c | 222 int ip_cmsg_send(struct net *net, struct msghdr *msg, struct ipcm_cookie *ipc, in ip_cmsg_send() argument 242 ipc->oif = src_info->ipi6_ifindex; in ip_cmsg_send() 243 ipc->addr = src_info->ipi6_addr.s6_addr32[3]; in ip_cmsg_send() 254 err = ip_options_get(net, &ipc->opt, CMSG_DATA(cmsg), in ip_cmsg_send() 265 ipc->oif = info->ipi_ifindex; in ip_cmsg_send() 266 ipc->addr = info->ipi_spec_dst.s_addr; in ip_cmsg_send() 275 ipc->ttl = val; in ip_cmsg_send() 283 ipc->tos = val; in ip_cmsg_send() 284 ipc->priority = rt_tos2priority(ipc->tos); in ip_cmsg_send()
|
/linux-4.4.14/sound/soc/intel/haswell/ |
D | sst-haswell-ipc.c | 316 struct sst_generic_ipc ipc; member 564 msg = sst_ipc_reply_find_msg(&hsw->ipc, header); in hsw_process_reply() 575 hsw->ipc.pending = true; in hsw_process_reply() 582 hsw->ipc.pending = false; in hsw_process_reply() 638 sst_ipc_tx_msg_reply_complete(&hsw->ipc, msg); in hsw_process_reply() 779 struct sst_generic_ipc *ipc = &hsw->ipc; in hsw_irq_thread() local 826 queue_kthread_work(&ipc->kworker, &ipc->kwork); in hsw_irq_thread() 836 ret = sst_ipc_tx_message_wait(&hsw->ipc, in sst_hsw_fw_get_version() 901 ret = sst_ipc_tx_message_wait(&hsw->ipc, header, req, in sst_hsw_stream_set_volume() 967 ret = sst_ipc_tx_message_wait(&hsw->ipc, header, &req, in sst_hsw_mixer_set_volume() [all …]
|
D | Makefile | 2 sst-haswell-ipc.o sst-haswell-pcm.o sst-haswell-dsp.o
|
/linux-4.4.14/arch/s390/kernel/ |
D | jump_label.c | 42 unsigned char *ipc = (unsigned char *)entry->code; in jump_label_bug() local 46 pr_emerg("Jump label code mismatch at %pS [%p]\n", ipc, ipc); in jump_label_bug() 47 pr_emerg("Found: %6ph\n", ipc); in jump_label_bug()
|
/linux-4.4.14/drivers/isdn/i4l/ |
D | isdn_ppp.h | 32 extern int isdn_ppp_register_compressor(struct isdn_ppp_compressor *ipc); 33 extern int isdn_ppp_unregister_compressor(struct isdn_ppp_compressor *ipc);
|
D | isdn_ppp.c | 596 struct isdn_ppp_compressor *ipc = ipc_head; in isdn_ppp_ioctl() local 597 while (ipc) { in isdn_ppp_ioctl() 598 j = ipc->num / (sizeof(long) * 8); in isdn_ppp_ioctl() 599 i = ipc->num % (sizeof(long) * 8); in isdn_ppp_ioctl() 602 ipc = ipc->next; in isdn_ppp_ioctl() 2531 struct isdn_ppp_compressor *ipc = NULL; in isdn_ppp_decompress() local 2541 ipc = is->link_decompressor; in isdn_ppp_decompress() 2545 ipc = master->decompressor; in isdn_ppp_decompress() 2549 if (!ipc) { in isdn_ppp_decompress() 2570 len = ipc->decompress(stat, skb, skb_out, &rsparm); in isdn_ppp_decompress() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/qcom/ |
D | qcom,smd.txt | 25 - qcom,ipc: 28 Definition: three entries specifying the outgoing ipc bit used for 32 - u32 representing the ipc bit within the register 75 qcom,ipc = <&apcs 8 0>;
|
/linux-4.4.14/include/trace/events/ |
D | hswadsp.h | 56 DECLARE_EVENT_CLASS(ipc, 76 DEFINE_EVENT(ipc, ipc_request, 84 DEFINE_EVENT(ipc, ipc_reply, 92 DEFINE_EVENT(ipc, ipc_pending_reply, 100 DEFINE_EVENT(ipc, ipc_notification, 108 DEFINE_EVENT(ipc, ipc_error,
|
/linux-4.4.14/include/net/ |
D | ip.h | 124 struct ipcm_cookie *ipc, 141 struct ipcm_cookie *ipc, struct rtable **rtp, 149 static inline __u8 get_rttos(struct ipcm_cookie* ipc, struct inet_sock *inet) in get_rttos() argument 151 return (ipc->tos != -1) ? RT_TOS(ipc->tos) : RT_TOS(inet->tos); in get_rttos() 154 static inline __u8 get_rtconn_flags(struct ipcm_cookie* ipc, struct sock* sk) in get_rtconn_flags() argument 156 return (ipc->tos != -1) ? RT_CONN_FLAGS_TOS(sk, ipc->tos) : RT_CONN_FLAGS(sk); in get_rtconn_flags() 558 struct ipcm_cookie *ipc, bool allow_ipv6);
|
/linux-4.4.14/Documentation/DocBook/ |
D | kernel-api.xml.db | 277 API-ipc-init 278 API-ipc-init-ids 279 API-ipc-init-proc-interface 280 API-ipc-findkey 281 API-ipc-get-maxid 282 API-ipc-addid 284 API-ipc-check-perms 286 API-ipc-rmid 287 API-ipc-alloc 288 API-ipc-free [all …]
|
D | .kernel-api.xml.cmd | 2 …m/page_alloc.c mm/mempool.c mm/dmapool.c mm/page-writeback.c mm/truncate.c ipc/util.c include/linu…
|
/linux-4.4.14/drivers/tty/serial/ |
D | sunsab.h | 31 u8 ipc; /* Interrupt Port Configuration */ member 67 u8 ipc; member 103 u8 ipc; member
|
D | sunsab.c | 988 writeb(SAB82532_IPC_IC_ACT_LOW, &up->regs->w.ipc); in sunsab_init_one()
|
/linux-4.4.14/kernel/ |
D | auditsc.c | 657 if (security_audit_rule_match(ctx->ipc.osid, in audit_filter_rules() 1189 u32 osid = context->ipc.osid; in show_special() 1192 from_kuid(&init_user_ns, context->ipc.uid), in show_special() 1193 from_kgid(&init_user_ns, context->ipc.gid), in show_special() 1194 context->ipc.mode); in show_special() 1206 if (context->ipc.has_perm) { in show_special() 1214 context->ipc.qbytes, in show_special() 1215 context->ipc.perm_uid, in show_special() 1216 context->ipc.perm_gid, in show_special() 1217 context->ipc.perm_mode); in show_special() [all …]
|
D | audit.h | 170 } ipc; member
|
/linux-4.4.14/drivers/net/vmxnet3/ |
D | vmxnet3_defs.h | 260 u32 ipc:1; /* IP Checksum Correct */ member 270 u32 ipc:1; /* IP Checksum Correct */ member 293 u32 ipc:1; /* IP Checksum Correct */ member 303 u32 ipc:1; /* IP Checksum Correct */ member
|
/linux-4.4.14/drivers/mailbox/ |
D | Makefile | 9 obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | qcom-rpm.txt | 35 - qcom,ipc: 39 Definition: three entries specifying the outgoing ipc bit used for 43 - u32 representing the ipc bit within the register 235 qcom,ipc = <&apcs 0x8 2>;
|
/linux-4.4.14/sound/soc/intel/atom/sst/ |
D | sst_ipc.c | 73 u32 drv_id, u32 ipc, void *data, u32 size) in sst_wake_up_block() argument 83 if (block->msg_id == ipc && block->drv_id == drv_id) { in sst_wake_up_block() 97 ipc, drv_id); in sst_wake_up_block()
|
D | sst.h | 501 int sst_send_sync_msg(int ipc, int str_id); 513 u32 drv_id, u32 ipc, void *data, u32 size);
|
/linux-4.4.14/security/apparmor/ |
D | Makefile | 5 apparmor-y := apparmorfs.o audit.o capability.o context.o ipc.o lib.o match.o \
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | wii.dts | 159 ipc@0d000000 { 160 compatible = "nintendo,hollywood-ipc";
|
/linux-4.4.14/tools/perf/ui/browsers/ |
D | annotate.c | 152 if (dl->ipc) in annotate_browser__write() 153 ui_browser__printf(browser, "%*.2f ", IPC_WIDTH - 1, dl->ipc); in annotate_browser__write() 418 if (max_percent < 0.01 && pos->ipc == 0) { in annotate_browser__calc_percent() 918 float ipc = n_insn / ((double)ch->cycles / (double)ch->num); in count_and_fill() local 928 dl->ipc = ipc; in count_and_fill()
|
/linux-4.4.14/tools/perf/util/ |
D | annotate.h | 62 float ipc; member
|
/linux-4.4.14/Documentation/devicetree/bindings/soc/ |
D | qcom,smd-rpm.txt | 88 qcom,ipc = <&apcs 8 0>;
|
/linux-4.4.14/net/iucv/ |
D | iucv.c | 1548 struct iucv_path_complete *ipc = (void *) data; in iucv_path_complete() local 1549 struct iucv_path *path = iucv_path_table[ipc->ippathid]; in iucv_path_complete() 1552 path->flags = ipc->ipflags1; in iucv_path_complete() 1554 path->handler->path_complete(path, ipc->ipuser); in iucv_path_complete()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | ecx-common.dtsi | 56 ipc@fff20000 {
|
D | qcom-msm8960.dtsi | 116 qcom,ipc = <&l2cc 0x8 2>;
|
D | qcom-msm8974.dtsi | 355 qcom,ipc = <&apcs 8 0>;
|
D | qcom-apq8064.dtsi | 437 qcom,ipc = <&l2cc 0x8 2>;
|
D | atlas7.dtsi | 105 ipc@13240000 { 106 compatible = "sirf,atlas7-ipc";
|
D | am33xx.dtsi | 157 compatible = "ti,am3352-wkup-m3-ipc";
|
D | am4372.dtsi | 167 compatible = "ti,am4372-wkup-m3-ipc";
|
/linux-4.4.14/fs/squashfs/ |
D | squashfs_fs.h | 410 struct squashfs_ipc_inode ipc; member
|
D | inode.c | 366 struct squashfs_ipc_inode *sqsh_ino = &squashfs_ino.ipc; in squashfs_read_inode()
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/nintendo/ |
D | wii.txt | 135 - compatible : should be "nintendo,hollywood-ipc"
|
/linux-4.4.14/Documentation/sysctl/ |
D | kernel.txt | 47 - msg_next_id [ sysv ipc ] 73 - sem_next_id [ sysv ipc ] 75 - shm_next_id [ sysv ipc ] 78 - shmmax [ sysv ipc ] 125 upon memory add/remove or upon ipc namespace creation/removal.
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | systbl.h | 124 COMPAT_SYS(ipc)
|
/linux-4.4.14/drivers/video/fbdev/omap2/dss/ |
D | dispc.c | 3089 bool onoff, rf, ipc, vs, hs, de; in _dispc_mgr_set_lcd_timings() local 3136 ipc = false; in _dispc_mgr_set_lcd_timings() 3139 ipc = true; in _dispc_mgr_set_lcd_timings() 3162 FLD_VAL(ipc, 14, 14) | in _dispc_mgr_set_lcd_timings() 3178 val = (rf << 0) | (ipc << 3) | (onoff << 6); in _dispc_mgr_set_lcd_timings()
|
/linux-4.4.14/arch/x86/entry/syscalls/ |
D | syscall_32.tbl | 126 117 i386 ipc sys_ipc compat_sys_ipc
|
/linux-4.4.14/Documentation/RCU/ |
D | listRCU.txt | 229 function in ipc/util.c). This code checks a "deleted" flag under a
|
D | RTFP.txt | 825 ,Title="[PATCH]updated ipc lock patch"
|
/linux-4.4.14/fs/cifs/ |
D | cifsglob.h | 891 bool ipc:1; /* set if connection to IPC$ eg for RPC/PIPES */ member
|
D | connect.c | 3607 if (!tcon->ipc && server->ops->qfs_tcon) in cifs_mount() 3857 tcon->ipc = 1; in CIFSTCon()
|
D | inode.c | 1009 if (rc && tcon->ipc) {
|
D | smb2pdu.c | 987 tcon->ipc = true; in SMB2_tcon()
|
/linux-4.4.14/include/uapi/linux/ |
D | Kbuild | 199 header-y += ipc.h
|
/linux-4.4.14/ |
D | Makefile | 883 core-y += kernel/ certs/ mm/ fs/ ipc/ security/ crypto/ block/
|
/linux-4.4.14/Documentation/ia64/ |
D | err_inject.txt | 99 #include <sys/ipc.h>
|
/linux-4.4.14/Documentation/cgroups/ |
D | memory.txt | 706 1 | A charge of file pages (normal file, tmpfs file (e.g. ipc shared memory)
|
/linux-4.4.14/init/ |
D | Kconfig | 232 You can find documentation about IPC with "info ipc" and also in
|