Home
last modified time | relevance | path

Searched refs:de (Results 1 – 25 of 48) sorted by relevance

12

/drivers/net/ethernet/dec/tulip/
Dde2104x.c335 static void de_tx (struct de_private *de);
336 static void de_clean_rings (struct de_private *de);
337 static void de_media_interrupt (struct de_private *de, u32 status);
340 static unsigned int de_ok_to_advertise (struct de_private *de, u32 new_media);
374 #define dr32(reg) ioread32(de->regs + (reg))
375 #define dw32(reg, val) iowrite32((val), de->regs + (reg))
378 static void de_rx_err_acct (struct de_private *de, unsigned rx_tail, in de_rx_err_acct() argument
381 netif_dbg(de, rx_err, de->dev, in de_rx_err_acct()
388 netif_warn(de, rx_err, de->dev, in de_rx_err_acct()
391 de->net_stats.rx_length_errors++; in de_rx_err_acct()
[all …]
/drivers/staging/lustre/lustre/llite/
Ddcache.c59 static void ll_release(struct dentry *de) in ll_release() argument
63 LASSERT(de != NULL); in ll_release()
64 lld = ll_d2d(de); in ll_release()
73 de->d_fsdata = NULL; in ll_release()
150 static int ll_ddelete(const struct dentry *de) in ll_ddelete() argument
152 LASSERT(de); in ll_ddelete()
155 d_lustre_invalid((struct dentry *)de) ? "deleting" : "keeping", in ll_ddelete()
156 de, de, de->d_parent, d_inode(de), in ll_ddelete()
157 d_unhashed(de) ? "" : "hashed,", in ll_ddelete()
158 list_empty(&de->d_subdirs) ? "" : "subdirs"); in ll_ddelete()
[all …]
Dnamei.c375 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de) in ll_splice_alias() argument
381 new = ll_find_alias(inode, de); in ll_splice_alias()
388 d_move(new, de); in ll_splice_alias()
396 rc = ll_d_init(de); in ll_splice_alias()
399 d_add(de, inode); in ll_splice_alias()
401 de, d_inode(de), d_count(de), de->d_flags); in ll_splice_alias()
402 return de; in ll_splice_alias()
407 struct inode *parent, struct dentry **de) in ll_lookup_it_finish() argument
418 rc = ll_prep_inode(&inode, request, (*de)->d_sb, it); in ll_lookup_it_finish()
437 if (d_unhashed(*de)) { in ll_lookup_it_finish()
[all …]
Dllite_internal.h74 #define ll_d2d(de) ((struct ll_dentry_data *)((de)->d_fsdata)) argument
687 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de);
727 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat);
750 int ll_d_init(struct dentry *de);
769 int ll_setattr(struct dentry *de, struct iattr *attr);
770 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
/drivers/net/wireless/ath/
Ddfs_pri_detector.c375 static void pri_detector_exit(struct pri_detector *de) in pri_detector_exit() argument
377 pri_detector_reset(de, 0); in pri_detector_exit()
379 kfree(de); in pri_detector_exit()
382 static struct pri_sequence *pri_detector_add_pulse(struct pri_detector *de, in pri_detector_add_pulse() argument
388 const struct radar_detector_specs *rs = de->rs; in pri_detector_add_pulse()
394 if ((ts - de->last_ts) < rs->max_pri_tolerance) in pri_detector_add_pulse()
401 de->last_ts = ts; in pri_detector_add_pulse()
403 max_updated_seq = pseq_handler_add_to_existing_seqs(de, ts); in pri_detector_add_pulse()
405 if (!pseq_handler_create_sequences(de, ts, max_updated_seq)) { in pri_detector_add_pulse()
406 pri_detector_reset(de, ts); in pri_detector_add_pulse()
[all …]
Ddfs_pri_detector.h60 void (*exit) (struct pri_detector *de);
62 (*add_pulse)(struct pri_detector *de, struct pulse_event *e);
63 void (*reset) (struct pri_detector *de, u64 ts);
Ddfs_pattern_detector.c187 struct pri_detector *de = cd->detectors[i]; in channel_detector_exit() local
188 if (de != NULL) in channel_detector_exit()
189 de->exit(de); in channel_detector_exit()
215 struct pri_detector *de = pri_detector_init(rs); in channel_detector_create() local
216 if (de == NULL) in channel_detector_create()
218 cd->detectors[i] = de; in channel_detector_create()
/drivers/scsi/snic/
Dsnic_debugfs.c38 struct dentry *de = NULL; in snic_debugfs_init() local
40 de = debugfs_create_dir("snic", NULL); in snic_debugfs_init()
41 if (!de) { in snic_debugfs_init()
46 snic_glob->trc_root = de; in snic_debugfs_init()
48 de = debugfs_create_dir("statistics", snic_glob->trc_root); in snic_debugfs_init()
49 if (!de) { in snic_debugfs_init()
54 snic_glob->stats_root = de; in snic_debugfs_init()
387 struct dentry *de = NULL; in snic_stats_debugfs_init() local
396 de = debugfs_create_dir(name, snic_glob->stats_root); in snic_stats_debugfs_init()
397 if (!de) { in snic_stats_debugfs_init()
[all …]
/drivers/gpu/host1x/
Ddebug.c157 struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); in host1x_debugfs_init() local
159 if (!de) in host1x_debugfs_init()
163 host1x->debugfs = de; in host1x_debugfs_init()
165 debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops); in host1x_debugfs_init()
166 debugfs_create_file("status_all", S_IRUGO, de, host1x, in host1x_debugfs_init()
169 debugfs_create_u32("trace_cmdbuf", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
172 host1x_hw_debug_init(host1x, de); in host1x_debugfs_init()
174 debugfs_create_u32("force_timeout_pid", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
176 debugfs_create_u32("force_timeout_val", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
178 debugfs_create_u32("force_timeout_channel", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
Ddev.h61 void (*debug_init)(struct dentry *de);
284 static inline void host1x_hw_debug_init(struct host1x *host, struct dentry *de) in host1x_hw_debug_init() argument
287 host->debug_op->debug_init(de); in host1x_hw_debug_init()
/drivers/pnp/isapnp/
Dproc.c74 struct proc_dir_entry *de, *e; in isapnp_proc_attach_device() local
77 if (!(de = bus->procdir)) { in isapnp_proc_attach_device()
79 de = bus->procdir = proc_mkdir(name, isapnp_proc_bus_dir); in isapnp_proc_attach_device()
80 if (!de) in isapnp_proc_attach_device()
84 e = dev->procent = proc_create_data(name, S_IFREG | S_IRUGO, de, in isapnp_proc_attach_device()
/drivers/isdn/hardware/eicon/
Ddivasproc.c359 struct proc_dir_entry *de, *pe; in create_adapter_proc() local
363 if (!(de = proc_mkdir(tmp, proc_net_eicon))) in create_adapter_proc()
365 a->proc_adapter_dir = (void *) de; in create_adapter_proc()
367 pe = proc_create_data(info_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc()
373 pe = proc_create_data(grp_opt_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc()
377 pe = proc_create_data(d_l1_down_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc()
/drivers/md/
Ddm-snap-persistent.c415 struct disk_exception *de = get_exception(ps, ps_area, index); in read_exception() local
418 result->old_chunk = le64_to_cpu(de->old_chunk); in read_exception()
419 result->new_chunk = le64_to_cpu(de->new_chunk); in read_exception()
425 struct disk_exception *de = get_exception(ps, ps->area, index); in write_exception() local
428 de->old_chunk = cpu_to_le64(e->old_chunk); in write_exception()
429 de->new_chunk = cpu_to_le64(e->new_chunk); in write_exception()
434 struct disk_exception *de = get_exception(ps, ps->area, index); in clear_exception() local
437 de->old_chunk = 0; in clear_exception()
438 de->new_chunk = 0; in clear_exception()
Ddm-cache-policy-smq.c456 struct entry *de; in q_requeue_before() local
463 for (de = l_head(q->es, q->qs + new_level); de; de = l_next(q->es, de)) { in q_requeue_before()
464 if (de->sentinel) in q_requeue_before()
467 q_del(q, de); in q_requeue_before()
468 de->level = e->level; in q_requeue_before()
471 q_push_before(q, dest, de); in q_requeue_before()
473 q_push(q, de); in q_requeue_before()
/drivers/gpu/drm/armada/
Darmada_debugfs.c135 struct dentry *de; in armada_debugfs_create() local
137 de = debugfs_create_file(name, mode, root, minor->dev, fops); in armada_debugfs_create()
139 return drm_add_fake_info_node(minor, de, fops); in armada_debugfs_create()
Darmada_drm.h73 struct dentry *de; member
/drivers/net/can/sja1000/
DKconfig19 boards from Phytec (http://www.phytec.de) like the PCM027,
29 EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de).
37 (http://www.ems-wuensche.de).
/drivers/ipack/devices/
Dscc2698.h65 u8 de, ctg; /* Start counter timer of block */ member
83 u8 de, r2; /* reserved */ member
/drivers/media/radio/si470x/
Dradio-si470x-common.c134 static unsigned short de = 1; variable
135 module_param(de, ushort, 0444);
136 MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*");
385 (de << 11) & SYSCONFIG1_DE; /* DE*/ in si470x_start()
/drivers/staging/most/
DTODO8 Christian Gromm <chris@engineersdelight.de>
/drivers/net/hamradio/
DKconfig128 information on the modems, see <http://www.baycom.de/> and
146 <http://www.baycom.de/> and
161 the modems, see <http://www.baycom.de/> and the file
176 modems, see <http://www.baycom.de/> and the file
/drivers/media/usb/uvc/
DKconfig9 For more information see: <http://linux-uvc.berlios.de/>
/drivers/net/can/
DKconfig22 www.canusb.com / www.can232.com / www.mictronics.de / www.canhack.de
26 http://developer.berlios.de/projects/socketcan for details.
/drivers/usb/misc/
DKconfig66 alphanumeric LCD modules. See <http://www.usblcd.de/> for more
89 Please see: http://www.ak-modul-bus.de/stat/mikrocontroller.html
117 See also <http://www.fs.tum.de/~echtler/idmouse/>.
211 http://linux-uvc.berlios.de
/drivers/soc/ti/
DKconfig16 Packets are queued/de-queued by writing/reading descriptor address

12