Home
last modified time | relevance | path

Searched refs:ed (Results 1 – 116 of 116) sorted by relevance

/linux-4.1.27/drivers/usb/host/
Dohci-q.c142 static void periodic_link (struct ohci_hcd *ohci, struct ed *ed) in periodic_link() argument
147 (ed->hwINFO & cpu_to_hc32 (ohci, ED_ISO)) ? "iso " : "", in periodic_link()
148 ed, ed->branch, ed->load, ed->interval); in periodic_link()
150 for (i = ed->branch; i < NUM_INTS; i += ed->interval) { in periodic_link()
151 struct ed **prev = &ohci->periodic [i]; in periodic_link()
153 struct ed *here = *prev; in periodic_link()
159 while (here && ed != here) { in periodic_link()
160 if (ed->interval > here->interval) in periodic_link()
166 if (ed != here) { in periodic_link()
167 ed->ed_next = here; in periodic_link()
[all …]
Dfhci-q.c62 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number) in fhci_add_tds_to_ed() argument
68 list_add_tail(&td->node, &ed->td_list); in fhci_add_tds_to_ed()
70 if (ed->td_head == NULL) in fhci_add_tds_to_ed()
71 ed->td_head = td_list[0]; in fhci_add_tds_to_ed()
74 static struct td *peek_td_from_ed(struct ed *ed) in peek_td_from_ed() argument
78 if (!list_empty(&ed->td_list)) in peek_td_from_ed()
79 td = list_entry(ed->td_list.next, struct td, node); in peek_td_from_ed()
111 struct td *fhci_remove_td_from_ed(struct ed *ed) in fhci_remove_td_from_ed() argument
115 if (!list_empty(&ed->td_list)) { in fhci_remove_td_from_ed()
116 td = list_entry(ed->td_list.next, struct td, node); in fhci_remove_td_from_ed()
[all …]
Dfhci-mem.c34 static void init_ed(struct ed *ed) in init_ed() argument
36 memset(ed, 0, sizeof(*ed)); in init_ed()
37 INIT_LIST_HEAD(&ed->td_list); in init_ed()
38 INIT_LIST_HEAD(&ed->node); in init_ed()
65 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci) in fhci_get_empty_ed()
67 struct ed *ed; in fhci_get_empty_ed() local
70 ed = list_entry(fhci->empty_eds.next, struct ed, node); in fhci_get_empty_ed()
73 ed = kmalloc(sizeof(*ed), GFP_ATOMIC); in fhci_get_empty_ed()
74 if (!ed) in fhci_get_empty_ed()
77 init_ed(ed); in fhci_get_empty_ed()
[all …]
Dfhci-sched.c48 struct ed *ed; in fhci_transaction_confirm() local
65 ed = td->ed; in fhci_transaction_confirm()
66 if (ed->mode == FHCI_TF_ISO) { in fhci_transaction_confirm()
67 if (ed->td_list.next->next != &ed->td_list) { in fhci_transaction_confirm()
69 list_entry(ed->td_list.next->next, struct td, in fhci_transaction_confirm()
87 ed->state = FHCI_ED_HALTED; in fhci_transaction_confirm()
122 fhci_move_td_from_ed_to_done_list(usb, ed); in fhci_transaction_confirm()
159 static int add_packet(struct fhci_usb *usb, struct ed *ed, struct td *td) in add_packet() argument
167 td->toggle = ed->toggle_carry; in add_packet()
169 switch (ed->mode) { in add_packet()
[all …]
Dohci-mem.c47 sizeof (struct ed), in ohci_mem_init()
119 static struct ed *
123 struct ed *ed; in ed_alloc() local
125 ed = dma_pool_alloc (hc->ed_cache, mem_flags, &dma); in ed_alloc()
126 if (ed) { in ed_alloc()
127 memset (ed, 0, sizeof (*ed)); in ed_alloc()
128 INIT_LIST_HEAD (&ed->td_list); in ed_alloc()
129 ed->dma = dma; in ed_alloc()
131 return ed; in ed_alloc()
135 ed_free (struct ohci_hcd *hc, struct ed *ed) in ed_free() argument
[all …]
Dohci-hcd.c150 struct ed *ed; in ohci_urb_enqueue() local
158 if (! (ed = ed_get (ohci, urb->ep, urb->dev, pipe, urb->interval))) in ohci_urb_enqueue()
162 switch (ed->type) { in ohci_urb_enqueue()
196 urb_priv->ed = ed; in ohci_urb_enqueue()
224 if (ed->state == ED_IDLE) { in ohci_urb_enqueue()
225 retval = ed_schedule (ohci, ed); in ohci_urb_enqueue()
238 list_add(&ed->in_use_list, &ohci->eds_in_use); in ohci_urb_enqueue()
240 if (ed->type == PIPE_ISOCHRONOUS) { in ohci_urb_enqueue()
244 frame += max_t (u16, 8, ed->interval); in ohci_urb_enqueue()
245 frame &= ~(ed->interval - 1); in ohci_urb_enqueue()
[all …]
Dohci-dbg.c312 const struct ed *ed, int verbose) in ohci_dump_ed() argument
314 u32 tmp = hc32_to_cpu (ohci, ed->hwINFO); in ohci_dump_ed()
319 ed, ed->state, edstring (ed->type), in ohci_dump_ed()
320 hc32_to_cpup (ohci, &ed->hwNextED)); in ohci_dump_ed()
336 tmp = hc32_to_cpup (ohci, &ed->hwHeadP); in ohci_dump_ed()
341 hc32_to_cpup (ohci, &ed->hwTailP), in ohci_dump_ed()
349 list_for_each (tmp, &ed->td_list) { in ohci_dump_ed()
399 show_list (struct ohci_hcd *ohci, char *buf, size_t count, struct ed *ed) in show_list() argument
403 if (!ed) in show_list()
407 while (ed->ed_prev) in show_list()
[all …]
Dfhci.h329 struct ed { struct
355 struct ed *ed; /* a handle to the corresponding ED */ argument
397 struct ed *ed; member
521 void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed);
522 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci);
524 struct urb_priv *urb_priv, struct ed *ed, u16 index,
527 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number);
571 struct td *fhci_remove_td_from_ed(struct ed *ed);
573 void fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed);
578 void fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed);
Dfhci-hcd.c173 struct ed *ed; in fhci_mem_free() local
174 struct ed *next_ed; in fhci_mem_free()
178 list_for_each_entry_safe(ed, next_ed, &fhci->empty_eds, node) { in fhci_mem_free()
179 list_del(&ed->node); in fhci_mem_free()
180 kfree(ed); in fhci_mem_free()
229 struct ed *ed; in fhci_mem_init() local
231 ed = kmalloc(sizeof(*ed), GFP_KERNEL); in fhci_mem_init()
232 if (!ed) in fhci_mem_init()
234 fhci_recycle_empty_ed(fhci, ed); in fhci_mem_init()
501 urb_priv->ed->state = FHCI_ED_URB_DEL; in fhci_urb_dequeue()
[all …]
Dohci.h25 struct ed { struct
47 struct ed *ed_next; /* on schedule or rm_list */ argument
48 struct ed *ed_prev; /* for non-interrupt EDs */ argument
74 #define OKAY_TO_TAKEBACK(ohci, ed) \ argument
75 ((int) (ohci->wdh_cnt - ed->takeback_wdh_cnt) >= 0)
130 struct ed *ed; member
335 struct ed *ed; member
377 struct ed *ed_rm_list; /* to be removed */
379 struct ed *ed_bulktail; /* last in bulk list */
380 struct ed *ed_controltail; /* last in ctrl list */
[all …]
Dohci-hub.c139 static inline struct ed *find_head (struct ed *ed) in find_head() argument
142 while (ed->ed_prev) in find_head()
143 ed = ed->ed_prev; in find_head()
144 return ed; in find_head()
/linux-4.1.27/drivers/staging/gdm724x/
Dgdm_endian.c17 void gdm_set_endian(struct gdm_endian *ed, u8 dev_endian) in gdm_set_endian() argument
24 ed->dev_ed = ENDIANNESS_BIG; in gdm_set_endian()
26 ed->dev_ed = ENDIANNESS_LITTLE; in gdm_set_endian()
31 ed->host_ed = ENDIANNESS_LITTLE; in gdm_set_endian()
33 ed->host_ed = ENDIANNESS_BIG; in gdm_set_endian()
37 u16 gdm_cpu_to_dev16(struct gdm_endian *ed, u16 x) in gdm_cpu_to_dev16() argument
39 if (ed->dev_ed == ed->host_ed) in gdm_cpu_to_dev16()
45 u16 gdm_dev16_to_cpu(struct gdm_endian *ed, u16 x) in gdm_dev16_to_cpu() argument
47 if (ed->dev_ed == ed->host_ed) in gdm_dev16_to_cpu()
53 u32 gdm_cpu_to_dev32(struct gdm_endian *ed, u32 x) in gdm_cpu_to_dev32() argument
[all …]
Dgdm_endian.h43 void gdm_set_endian(struct gdm_endian *ed, u8 dev_endian);
44 u16 gdm_cpu_to_dev16(struct gdm_endian *ed, u16 x);
45 u16 gdm_dev16_to_cpu(struct gdm_endian *ed, u16 x);
46 u32 gdm_cpu_to_dev32(struct gdm_endian *ed, u32 x);
47 u32 gdm_dev32_to_cpu(struct gdm_endian *ed, u32 x);
/linux-4.1.27/drivers/edac/
Docteon_edac-pc.c31 struct edac_device_ctl_info *ed; member
58 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event()
63 edac_device_handle_ce(p->ed, cpu, 1, "icache"); in co_cache_error_event()
66 edac_device_printk(p->ed, KERN_ERR, in co_cache_error_event()
71 edac_device_handle_ue(p->ed, cpu, 0, "dcache"); in co_cache_error_event()
73 edac_device_handle_ce(p->ed, cpu, 0, "dcache"); in co_cache_error_event()
95 p->ed = edac_device_alloc_ctl_info(0, "cpu", num_possible_cpus(), in co_cache_error_probe()
98 if (!p->ed) in co_cache_error_probe()
101 p->ed->dev = &pdev->dev; in co_cache_error_probe()
103 p->ed->dev_name = dev_name(&pdev->dev); in co_cache_error_probe()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/obdecho/
Decho_client.c432 struct echo_device *ed = cl2echo_dev(lu2cl_dev(obj->lo_dev)); in echo_object_init() local
433 struct echo_client_obd *ec = ed->ed_ec; in echo_object_init()
438 if (ed->ed_next) { in echo_object_init()
442 under = ed->ed_next; in echo_object_init()
458 eco->eo_dev = ed; in echo_object_init()
470 static int echo_alloc_memmd(struct echo_device *ed, in echo_alloc_memmd() argument
476 if (ed->ed_next != NULL) in echo_alloc_memmd()
477 return obd_alloc_memmd(ed->ed_ec->ec_exp, lsmp); in echo_alloc_memmd()
499 static int echo_free_memmd(struct echo_device *ed, struct lov_stripe_md **lsmp) in echo_free_memmd() argument
504 if (ed->ed_next != NULL) in echo_free_memmd()
[all …]
/linux-4.1.27/drivers/firmware/efi/
Defi-pstore.c278 struct pstore_erase_data *ed = data; in efi_pstore_erase_func() local
281 efi_char16_t *efi_name = ed->name; in efi_pstore_erase_func()
282 unsigned long ucs2_len = ucs2_strlen(ed->name); in efi_pstore_erase_func()
295 sprintf(name_old, "dump-type%u-%u-%lu", ed->type, in efi_pstore_erase_func()
296 (unsigned int)ed->id, ed->time.tv_sec); in efi_pstore_erase_func()
/linux-4.1.27/arch/s390/include/asm/
Dcpu_mf.h66 unsigned int ed:1; /* 23: diag-sampling enable control */ member
88 unsigned int ed:1; /* 55: diag-sampling enable control */ member
Dnmi.h22 __u32 ed : 1; /* 05 external damage */ member
Detr.h97 unsigned int ed : 8; /* ETS device dependent data */ member
/linux-4.1.27/drivers/media/i2c/
Dad9389b.c828 struct ad9389b_edid_detect ed; in ad9389b_edid_handler() local
853 ed.present = false; in ad9389b_edid_handler()
854 ed.segment = ad9389b_rd(sd, 0xc4); in ad9389b_edid_handler()
855 v4l2_subdev_notify(sd, AD9389B_EDID_DETECT, (void *)&ed); in ad9389b_edid_handler()
1027 struct ad9389b_edid_detect ed; in ad9389b_check_edid_status() local
1074 ed.present = true; in ad9389b_check_edid_status()
1075 ed.segment = 0; in ad9389b_check_edid_status()
1076 v4l2_subdev_notify(sd, AD9389B_EDID_DETECT, (void *)&ed); in ad9389b_check_edid_status()
1079 return ed.present; in ad9389b_check_edid_status()
Dadv7511.c1054 struct adv7511_edid_detect ed; in adv7511_notify_no_edid() local
1057 ed.present = false; in adv7511_notify_no_edid()
1058 ed.segment = adv7511_rd(sd, 0xc4); in adv7511_notify_no_edid()
1059 v4l2_subdev_notify(sd, ADV7511_EDID_DETECT, (void *)&ed); in adv7511_notify_no_edid()
1245 struct adv7511_edid_detect ed; in adv7511_check_edid_status() local
1286 ed.present = true; in adv7511_check_edid_status()
1287 ed.segment = 0; in adv7511_check_edid_status()
1289 v4l2_subdev_notify(sd, ADV7511_EDID_DETECT, (void *)&ed); in adv7511_check_edid_status()
1290 return ed.present; in adv7511_check_edid_status()
/linux-4.1.27/arch/powerpc/crypto/
Daes-tab-4k.S79 .long R(00, 00, 00, 00), R(c1, ed, ed, 2c)
81 .long R(79, b1, b1, c8), R(b6, 5b, 5b, ed)
87 .long R(4f, aa, aa, e5), R(ed, fb, fb, 16)
200 .long R(02, 03, 6a, ba), R(ed, 16, 82, 5c)
219 .long R(09, 80, 86, 83), R(32, 2b, ed, 48)
238 .long R(b6, ed, fc, 68), R(b8, e4, f1, 63)
284 .long R(e1, 1c, e5, ed), R(7a, 47, b1, 3c)
/linux-4.1.27/arch/ia64/mm/
Dfault.c245 ia64_psr(regs)->ed = 1; in ia64_do_page_fault()
268 ia64_psr(regs)->ed = 1; in ia64_do_page_fault()
/linux-4.1.27/drivers/usb/misc/
Dftdi-elan.c1493 u8 ed = ed_number - 1; in ftdi_elan_edset_setup() local
1503 struct u132_target *target = &ftdi->target[ed]; in ftdi_elan_edset_setup()
1506 command->header = 0x80 | (ed << 5); in ftdi_elan_edset_setup()
1550 u8 ed = ed_number - 1; in ftdi_elan_edset_input() local
1560 struct u132_target *target = &ftdi->target[ed]; in ftdi_elan_edset_input()
1565 command->header = 0x82 | (ed << 5); in ftdi_elan_edset_input()
1615 u8 ed = ed_number - 1; in ftdi_elan_edset_empty() local
1625 struct u132_target *target = &ftdi->target[ed]; in ftdi_elan_edset_empty()
1628 command->header = 0x81 | (ed << 5); in ftdi_elan_edset_empty()
1672 u8 ed = ed_number - 1; in ftdi_elan_edset_output() local
[all …]
/linux-4.1.27/Documentation/pcmcia/
Ddriver.txt17 a bitwise or-ed combination from PCMCIA_DEV_ID_MATCH_* constants
/linux-4.1.27/Documentation/
Dkref.txt39 If you already have a valid pointer to a kref-ed structure (the
46 a valid pointer to a kref-ed structure without already
50 3) If the code attempts to gain a reference to a kref-ed structure
140 instance, you have a list of items that are each kref-ed, and you wish
Drobust-futexes.txt29 pthread_mutex_t, or yum is kill -9-ed), then waiters for that lock need
46 In practice, when e.g. yum is kill -9-ed (or segfaults), a system reboot
73 in another task, and the futex variable might have been simply mmap()-ed
Dparport-lowlevel.txt1210 bitwise-or'ed together:
1239 bitwise-or'ed together:
1268 bitwise-or'ed together:
1299 bitwise-or'ed together:
Dunshare.txt138 The flags argument specifies one or bitwise-or'ed of several of
Dinitrd.txt153 such a chroot'ed initrd environment.)
DDMA-API-HOWTO.txt936 Architectures must ensure that kmalloc'ed buffer is
941 makes sure that kmalloc'ed buffer doesn't share a cache line with
D00-INDEX165 - file containing a list of files that should never be diff'ed.
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dinput-reset.txt6 specified) the system is sync'ed and reset.
/linux-4.1.27/include/net/
Dmac802154.h210 int (*ed)(struct ieee802154_hw *hw, u8 *level); member
/linux-4.1.27/Documentation/block/
Dwriteback_cache_control.txt23 The REQ_FLUSH flag can be OR ed into the r/w flags of a bio submitted from
36 The REQ_FUA flag can be OR ed into the r/w flags of a bio submitted from the
/linux-4.1.27/drivers/net/ethernet/ibm/emac/
DKconfig47 # The options below has to be select'ed by the respective
/linux-4.1.27/arch/arm/boot/dts/
Domap3-ha-common.dtsi78 /* I2C2: mux'ed with GPIO168 which is connected to nKILL_POWER */
Domap3-ha-lcd.dts88 /* I2C2: mux'ed with GPIO168 which is connected to nKILL_POWER */
Dste-href.dtsi165 // PoP:ed eMMC
Domap3-tao3530.dtsi164 /* McBSP1: mux'ed with GPIO158 as clock for HA-DSP */
Dberlin2cd.dtsi6 * based on GPL'ed 2.6 kernel sources
Dberlin2.dtsi6 * based on GPL'ed 2.6 kernel sources
/linux-4.1.27/Documentation/video4linux/
Dmeye.txt101 obtained with a VIDIOCGMBUF call and mmap'ed by the
116 available from the first mmap'ed buffer.
Domap3isp.txt151 VIDIOC_OMAP3ISP_CCDC_CFG. Values may be or'ed to configure more than one
DREADME.pvrusb2176 mmap()'ed buffers or something even more exotic.
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dversatile-fpga-irq.txt5 controllers are OR:ed together and fed to the CPU tile's IRQ input. Each
/linux-4.1.27/drivers/net/ethernet/xilinx/
Dxilinx_axienet_main.c1116 struct ethtool_drvinfo *ed) in axienet_ethtools_get_drvinfo() argument
1118 strlcpy(ed->driver, DRIVER_NAME, sizeof(ed->driver)); in axienet_ethtools_get_drvinfo()
1119 strlcpy(ed->version, DRIVER_VERSION, sizeof(ed->version)); in axienet_ethtools_get_drvinfo()
1120 ed->regdump_len = sizeof(u32) * AXIENET_REGS_N; in axienet_ethtools_get_drvinfo()
/linux-4.1.27/Documentation/virtual/kvm/
Dcpuid.txt27 eax = and OR'ed group of (1 << flag), where each flags is:
Dtimekeeping.txt502 rate (ed: is it 18.2 Hz?) however that it has not yet been a problem in
Dapi.txt2253 be OR'ed into the "vsid" argument of the slbmte instruction.
2267 The "pte_enc" field provides a value that can OR'ed into the hash
/linux-4.1.27/lib/
DKconfig213 # compression support is select'ed if needed
271 # reed solomon support is select'ed if needed
328 # Textsearch support is select'ed if needed
440 # Netlink attribute parsing support is select'ed if needed
/linux-4.1.27/net/mac802154/
Dmain.c61 if (!ops || !(ops->xmit_async || ops->xmit_sync) || !ops->ed || in ieee802154_alloc_hw()
/linux-4.1.27/arch/s390/kernel/
Dnmi.c318 if (mci->ed && mci->ec) { in s390_do_machine_check()
Dperf_cpum_sf.c895 cpuhw->lsctl.ed, cpuhw->lsctl.cd, in cpumsf_pmu_enable()
1377 if (WARN_ON_ONCE(cpuhw->lsctl.es == 1 || cpuhw->lsctl.ed == 1)) { in cpumsf_pmu_add()
1383 cpuhw->lsctl.ed = 1; in cpumsf_pmu_add()
1405 cpuhw->lsctl.ed = 0; in cpumsf_pmu_del()
Dperf_event.c156 si.ad, si.ed, si.cd, si.dsdes, si.tear, si.dear); in print_debug_sf()
/linux-4.1.27/arch/ia64/include/asm/
Dprocessor.h119 __u64 ed : 1; member
140 __u64 ed : 1; member
/linux-4.1.27/Documentation/console/
Dconsole.txt48 0 - means the driver is not bound and if echo'ed, commands the driver
51 1 - means the driver is bound and if echo'ed, commands the driver to
/linux-4.1.27/arch/cris/arch-v32/drivers/
Dcryptocop.c1216 struct cryptocop_dma_desc *ed = alloc_cdesc(alloc_flag); in cryptocop_setup_dma_list() local
1218 if (!ed) { in cryptocop_setup_dma_list()
1236 ed->free_buf = NULL; in cryptocop_setup_dma_list()
1237 ed->dma_descr->wait = 1; in cryptocop_setup_dma_list()
1238 ed->dma_descr->out_eop = 1; in cryptocop_setup_dma_list()
1240ed->dma_descr->buf = (char*)virt_to_phys(&ed); /* Use any valid physical address for zero length d… in cryptocop_setup_dma_list()
1241 ed->dma_descr->after = ed->dma_descr->buf; in cryptocop_setup_dma_list()
1242 ed->dma_descr->md = REG_TYPE_CONV(unsigned short int, struct strcop_meta_out, ed_mo); in cryptocop_setup_dma_list()
1243 current_out_cdesc->next = ed; in cryptocop_setup_dma_list()
1244 current_out_cdesc = ed; in cryptocop_setup_dma_list()
/linux-4.1.27/arch/powerpc/boot/dts/fsl/
De500mc_power_isa.dtsi43 power-isa-e.ed; // Embedded.Enhanced Debug
De5500_power_isa.dtsi43 power-isa-e.ed; // Embedded.Enhanced Debug
De6500_power_isa.dtsi43 power-isa-e.ed; // Embedded.Enhanced Debug
/linux-4.1.27/drivers/net/ieee802154/
Dfakelb.c128 .ed = fakelb_hw_ed,
Dmrf24j40.c584 .ed = mrf24j40_ed,
Dcc2520.c636 .ed = cc2520_ed,
Dat86rf230.c1344 .ed = at86rf230_ed,
/linux-4.1.27/Documentation/arm/
Dmem_alignment5 doing so on some f***ed up ARM architectures like the EBSA110. However
/linux-4.1.27/Documentation/filesystems/
Ddnotify.txt24 if DN_MULTISHOT is or'ed with the event mask, then the registration will
Dmandatory-locking.txt100 prevent mandatory locks from being applied to an mmap()'ed file, but HP-UX
Dvfat.txt320 are numbered from 1 to N. The Nth slot is or'ed with 0x40
Dext4.txt273 or when an mmap'ed page which was previously
Dcoda.txt420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke…
Dproc.txt938 vmap vmap()ed pages
/linux-4.1.27/Documentation/infiniband/
Duser_verbs.txt20 directly to hardware registers mmap()ed into userspace, with no
/linux-4.1.27/drivers/scsi/lpfc/
Dlpfc_bsg.c792 struct event_data *ed; in lpfc_bsg_event_free() local
797 ed = list_entry(evt->events_to_get.next, typeof(*ed), node); in lpfc_bsg_event_free()
798 list_del(&ed->node); in lpfc_bsg_event_free()
799 kfree(ed->data); in lpfc_bsg_event_free()
800 kfree(ed); in lpfc_bsg_event_free()
804 ed = list_entry(evt->events_to_see.next, typeof(*ed), node); in lpfc_bsg_event_free()
805 list_del(&ed->node); in lpfc_bsg_event_free()
806 kfree(ed->data); in lpfc_bsg_event_free()
807 kfree(ed); in lpfc_bsg_event_free()
/linux-4.1.27/include/linux/
Dvmw_vmci_defs.h718 typedef void (*vmci_event_cb) (u32 sub_id, const struct vmci_event_data *ed,
/linux-4.1.27/Documentation/DocBook/media/
Dselection.png.b6433 gI4IgwA4SlgEAADAZh9/X9/+/ed/t8Ovf37t3PKWXje3rq3LTP2eI9sVs961969t59r2LbX16zJi
/linux-4.1.27/drivers/atm/
Deni.c1796 struct eni_dev *ed = ENI_DEV(dev); in eni_do_release() local
1800 iounmap(ed->ioaddr); in eni_do_release()
2305 struct eni_dev *ed = ENI_DEV(dev); in eni_remove_one() local
2306 struct eni_zero *zero = &ed->zero; in eni_remove_one()
2311 kfree(ed); in eni_remove_one()
/linux-4.1.27/Documentation/locking/
Dlocktorture.txt143 "FAILURE", or "RCU_HOTPLUG" indication to be printk()ed. The first
/linux-4.1.27/arch/ia64/kernel/
Dtraps.c452 ia64_psr(&regs)->ed = 1; in ia64_fault()
Dpalinfo.c740 unsigned long ed:1; in tr_info() member
/linux-4.1.27/Documentation/scsi/
Dhptiop.txt148 the request with or-ed IOPMU_QUEUE_MASK_HOST_BITS will be put into a
Daic79xx.txt127 - Correct a reference to free'ed memory during controller
DChangeLog.lpfc542 * Changes to support SCSI hotplug (ifdef'ed out because they need
638 (i.e. LOGO) before our FLOGI completes it should be LS_RJT'ed.
767 sent, the XRI of the LOGO rcv'ed is the same as the ADISC
/linux-4.1.27/drivers/tty/vt/
Dcp437.uni186 0xa1 U+00ed
/linux-4.1.27/Documentation/video4linux/bttv/
DInsmod-options37 gbuffers=2-32 number of capture buffers for mmap'ed capture.
/linux-4.1.27/Documentation/vm/
Dcleancache.txt147 cleancache is config'ed off and turn into a function-pointer-
148 compare-to-NULL if config'ed on but no backend claims the ops
Dfrontswap.txt116 A KVM implementation is underway and has been RFC'ed to lkml. And,
124 nothingness and the only overhead is a few extra bytes per swapon'ed
Dnuma_memory_policy.txt76 any regions of the address space mmap()ed with the MAP_ANONYMOUS flag.
92 mmap()ed region. When this happens, Linux splits the existing virtual
122 pages for regular files mmap()ed with MAP_SHARED ignore any VMA
Dunevictable-lru.txt73 (*) Those mapped into VM_LOCKED [mlock()ed] VMAs.
/linux-4.1.27/Documentation/usb/
DCREDITS129 - Edmund Humemberger <ed@atnet.at>, for it's great work on
/linux-4.1.27/Documentation/networking/
Dpacket_mmap.txt1012 the packet meta information for mmap(2)ed RX_RING and TX_RINGs. If your
1023 For the mmap(2)ed ring buffers, such timestamps are stored in the
1025 what kind of timestamp has been reported, the tp_status field is binary |'ed
Dvortex.txt113 selection values may be OR'ed (or added to) the following:
Dcan.txt609 are indenpendent from each other which leads to logical OR'ed filters when
/linux-4.1.27/drivers/mtd/onenand/
Donenand_base.c1048 int ed = min_t(int,free_end,readend); in onenand_transfer_auto_oob() local
1049 int n = ed - st; in onenand_transfer_auto_oob()
1839 int ed = min_t(int,free_end,writeend); in onenand_fill_auto_oob() local
1840 int n = ed - st; in onenand_fill_auto_oob()
/linux-4.1.27/net/vmw_vsock/
Dvmci_transport.c44 const struct vmci_event_data *ed,
47 const struct vmci_event_data *ed,
/linux-4.1.27/Documentation/arm/pxa/
Dmfp.txt130 from low power state, it can be 'OR'ed with any of:
/linux-4.1.27/Documentation/sysctl/
Dnet.txt173 …:a7:e9:7f:1d:60:35:c7:47:25:42:97:74:ca:56:bb:b6:a1:d8:43:e3:c9:0c:fd:17:55:c2:3a:4d:69:ed:f1:42:89
/linux-4.1.27/Documentation/ioctl/
Dhdio.txt645 otherwise; then, or'ed with the default
665 SELECT Or'ed with the default value of SELECT and
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-cd.1994-2004154 * malloc'ed but never free'd when closing the device.
/linux-4.1.27/drivers/mtd/
DKconfig161 # MTD block device support is select'ed if needed
/linux-4.1.27/drivers/zorro/
Dzorro.ids61 03ed A-Squared
/linux-4.1.27/Documentation/isdn/
DINTERFACE370 logical or'ed with (protocol-Id << 8)
398 logical or'ed with (protocol-Id << 8)
DREADME.sc277 in a segmentation fault when 'insmod'ed. This problem was created when one of
/linux-4.1.27/tools/power/cpupower/po/
Dit.po471 " 2.4 ed i primi 2.6\n"
934 " 2.4 ed i primi 2.6\n"
/linux-4.1.27/Documentation/ia64/
Dfsys.txt231 PSR.ed Unchanged. Note: This bit could only have an effect if an fsys-mode
/linux-4.1.27/Documentation/RCU/
Dtorture.txt332 "FAILURE", or "RCU_HOTPLUG" indication to be printk()ed. The first
/linux-4.1.27/arch/x86/lib/
Dx86-opcode-map.txt296 ed: IN eAX,DX
582 ed: paddsw Pq,Qq | vpaddsw Vx,Hx,Wx (66),(v1)
/linux-4.1.27/tools/perf/
Ddesign.txt33 can be poll()ed.
/linux-4.1.27/arch/sh/
DKconfig649 than the panic-ed kernel.
/linux-4.1.27/arch/s390/
DKconfig684 Also if a kernel was IPL'ed from a shared segment the kexec system
/linux-4.1.27/net/sched/
DKconfig475 programmable BPF (JIT'ed) filters as an alternative to ematches.
/linux-4.1.27/arch/mips/
DKconfig2625 passed to the panic-ed kernel).
/linux-4.1.27/drivers/scsi/aic7xxx/
Daic79xx.seq249 * If there are more commands waiting to be dma'ed
/linux-4.1.27/init/
DKconfig805 init is exec'ed.
/linux-4.1.27/arch/x86/
DKconfig1814 command line boot parameter passed to the panic-ed
/linux-4.1.27/
DMAINTAINERS1694 M: "Ed L. Cashin" <ed.cashin@acm.org>