Home
last modified time | relevance | path

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

12345

/linux/Documentation/w1/slaves/
H A Dw1_ds2423.rst44 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
45 …2 00 00 00 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
46 …9 c6 5d 18 00 00 00 00 04 37 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
47 …05 00 00 00 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
51 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
52 …2 00 00 22 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
53 …1 61 5d 19 00 00 00 00 df 0b 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff
54 …05 00 00 20 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
/linux/drivers/input/
H A Dff-core.c23 static int check_effect_access(struct ff_device *ff, int effect_id, in check_effect_access() argument
26 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
27 !ff->effect_owners[effect_id]) in check_effect_access()
30 if (file && ff->effect_owners[effect_id] != file) in check_effect_access()
50 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument
56 if (!test_bit(FF_PERIODIC, ff->ffbit)) in compat_effect()
94 struct ff_device *ff = dev->ff; in input_ff_upload() local
116 if (!test_bit(effect->type, ff->ffbit)) { in input_ff_upload()
117 error = compat_effect(ff, effec in input_ff_upload()
168 struct ff_device *ff = dev->ff; erase_effect() local
205 struct ff_device *ff = dev->ff; input_ff_erase() local
226 struct ff_device *ff = dev->ff; input_ff_flush() local
250 struct ff_device *ff = dev->ff; input_ff_event() local
345 struct ff_device *ff = dev->ff; input_ff_destroy() local
[all...]
H A Dff-memless.c196 static int get_compatible_type(struct ff_device *ff, int effect_type) in get_compatible_type() argument
199 if (test_bit(effect_type, ff->ffbit)) in get_compatible_type()
202 if (effect_type == FF_PERIODIC && test_bit(FF_RUMBLE, ff->ffbit)) in get_compatible_type()
353 effect_type = get_compatible_type(ml->dev->ff, effect->type); in ml_get_combo_effect()
417 struct ml_device *ml = dev->ff->private; in ml_ff_set_gain()
433 struct ml_device *ml = dev->ff->private; in ml_ff_playback()
464 struct ml_device *ml = dev->ff->private; in ml_ff_upload()
482 static void ml_ff_destroy(struct ff_device *ff) in ml_ff_destroy() argument
484 struct ml_device *ml = ff->private; in ml_ff_destroy()
507 struct ff_device *ff; in input_ff_create_memless() local
[all...]
/linux/sound/firewire/fireface/
H A Dff.c16 static void name_card(struct snd_ff *ff) in name_card() argument
18 struct fw_device *fw_dev = fw_parent_device(ff->unit); in name_card()
28 name = names[ff->unit_version]; in name_card()
30 strscpy(ff->card->driver, "Fireface"); in name_card()
31 strscpy(ff->card->shortname, name); in name_card()
32 strscpy(ff->card->mixername, name); in name_card()
33 snprintf(ff->card->longname, sizeof(ff->card->longname), in name_card()
36 dev_name(&ff->unit->device), 100 << fw_dev->max_speed); in name_card()
41 struct snd_ff *ff = card->private_data; in ff_card_free() local
43 snd_ff_stream_destroy_duplex(ff); in ff_card_free()
[all …]
H A Dff-protocol-latter.c141 static int latter_get_clock(struct snd_ff *ff, unsigned int *rate, in latter_get_clock() argument
148 err = snd_fw_transaction(ff->unit, TCODE_READ_QUADLET_REQUEST, in latter_get_clock()
154 return parse_clock_bits(data, rate, src, ff->unit_version); in latter_get_clock()
157 static int latter_switch_fetching_mode(struct snd_ff *ff, bool enable) in latter_switch_fetching_mode() argument
168 return snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_switch_fetching_mode()
172 static int latter_allocate_resources(struct snd_ff *ff, unsigned int rate) in latter_allocate_resources() argument
197 err = snd_fw_transaction(ff->unit, TCODE_WRITE_QUADLET_REQUEST, in latter_allocate_resources()
208 err = latter_get_clock(ff, &curr_rate, &src); in latter_allocate_resources()
230 ff->tx_resources.channels_mask = 0x00000000000000ffuLL; in latter_allocate_resources()
231 err = fw_iso_resources_allocate(&ff->tx_resources, in latter_allocate_resources()
[all …]
H A Dff.h116 bool (*has_msg)(struct snd_ff *ff);
117 long (*copy_msg_to_user)(struct snd_ff *ff, char __user *buf, long count);
118 void (*handle_msg)(struct snd_ff *ff, unsigned int offset, const __le32 *buf,
120 int (*fill_midi_msg)(struct snd_ff *ff,
123 int (*get_clock)(struct snd_ff *ff, unsigned int *rate,
125 int (*switch_fetching_mode)(struct snd_ff *ff, bool enable);
126 int (*allocate_resources)(struct snd_ff *ff, unsigned int rate);
127 int (*begin_session)(struct snd_ff *ff, unsigned int rate);
128 void (*finish_session)(struct snd_ff *ff);
129 void (*dump_status)(struct snd_ff *ff, struct snd_info_buffer *buffer);
[all …]
H A DMakefile2 snd-fireface-y := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \
3 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \
4 ff-protocol-latter.o
H A Dff-proc.c30 struct snd_ff *ff = entry->private_data; in proc_dump_status() local
32 ff->spec->protocol->dump_status(ff, buffer); in proc_dump_status()
35 static void add_node(struct snd_ff *ff, struct snd_info_entry *root, in add_node() argument
42 entry = snd_info_create_card_entry(ff->card, name, root); in add_node()
44 snd_info_set_text_ops(entry, ff, op); in add_node()
47 void snd_ff_proc_init(struct snd_ff *ff) in snd_ff_proc_init() argument
55 root = snd_info_create_card_entry(ff->card, "firewire", in snd_ff_proc_init()
56 ff->card->proc_root); in snd_ff_proc_init()
61 add_node(ff, root, "status", proc_dump_status); in snd_ff_proc_init()
/linux/tools/perf/util/
H A Dheader.c103 static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size) in __do_write_fd() argument
105 ssize_t ret = writen(ff->fd, buf, size); in __do_write_fd()
112 static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size) in __do_write_buf() argument
116 size_t new_size = ff->size; in __do_write_buf()
119 if (size + ff->offset > max_size) in __do_write_buf()
122 while (size > (new_size - ff->offset)) in __do_write_buf()
126 if (ff->size < new_size) { in __do_write_buf()
127 addr = realloc(ff->buf, new_size); in __do_write_buf()
130 ff->buf = addr; in __do_write_buf()
131 ff->size = new_size; in __do_write_buf()
[all …]
/linux/fs/fuse/
H A Diomode.c30 int fuse_file_cached_io_open(struct inode *inode, struct fuse_file *ff) in fuse_file_cached_io_open() argument
35 if (!ff->args) in fuse_file_cached_io_open()
60 WARN_ON(ff->iomode == IOM_UNCACHED); in fuse_file_cached_io_open()
61 if (ff->iomode == IOM_NONE) { in fuse_file_cached_io_open()
62 ff->iomode = IOM_CACHED; in fuse_file_cached_io_open()
71 static void fuse_file_cached_io_release(struct fuse_file *ff, in fuse_file_cached_io_release() argument
76 WARN_ON(ff->iomode != IOM_CACHED); in fuse_file_cached_io_release()
77 ff->iomode = IOM_NONE; in fuse_file_cached_io_release()
117 struct fuse_file *ff, in fuse_file_uncached_io_open() argument
127 WARN_ON(ff->iomode != IOM_NONE); in fuse_file_uncached_io_open()
[all …]
H A Dpassthrough.c31 struct fuse_file *ff = file->private_data; in fuse_passthrough_read_iter() local
32 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_read_iter()
36 .cred = ff->cred, in fuse_passthrough_read_iter()
58 struct fuse_file *ff = file->private_data; in fuse_passthrough_write_iter() local
59 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_write_iter()
63 .cred = ff->cred, in fuse_passthrough_write_iter()
85 struct fuse_file *ff = in->private_data; in fuse_passthrough_splice_read() local
86 struct file *backing_file = fuse_file_passthrough(ff); in fuse_passthrough_splice_read()
88 .cred = ff->cred, in fuse_passthrough_splice_read()
109 struct fuse_file *ff = out->private_data; in fuse_passthrough_splice_write() local
[all …]
H A Dfile.c57 struct fuse_file *ff; in fuse_file_alloc() local
59 ff = kzalloc_obj(struct fuse_file, GFP_KERNEL_ACCOUNT); in fuse_file_alloc()
60 if (unlikely(!ff)) in fuse_file_alloc()
63 ff->fm = fm; in fuse_file_alloc()
65 ff->args = kzalloc_obj(*ff->args, GFP_KERNEL_ACCOUNT); in fuse_file_alloc()
66 if (!ff->args) { in fuse_file_alloc()
67 kfree(ff); in fuse_file_alloc()
72 INIT_LIST_HEAD(&ff->write_entry); in fuse_file_alloc()
73 refcount_set(&ff in fuse_file_alloc()
82 fuse_file_free(struct fuse_file * ff) fuse_file_free() argument
88 fuse_file_get(struct fuse_file * ff) fuse_file_get() argument
103 fuse_file_put(struct fuse_file * ff,bool sync) fuse_file_put() argument
133 struct fuse_file *ff; fuse_file_open() local
188 struct fuse_file *ff = fuse_file_open(fm, nodeid, file->f_flags, isdir); fuse_do_open() local
201 struct fuse_file *ff = file->private_data; fuse_link_write_file() local
214 struct fuse_file *ff = file->private_data; fuse_finish_open() local
251 struct fuse_file *ff; fuse_open() local
304 fuse_prepare_release(struct fuse_inode * fi,struct fuse_file * ff,unsigned int flags,int opcode,bool sync) fuse_prepare_release() argument
349 fuse_file_release(struct inode * inode,struct fuse_file * ff,unsigned int open_flags,fl_owner_t id,bool isdir) fuse_file_release() argument
404 fuse_sync_release(struct fuse_inode * fi,struct fuse_file * ff,unsigned int flags) fuse_sync_release() argument
461 struct fuse_file *ff = file->private_data; fuse_flush() local
515 struct fuse_file *ff = file->private_data; fuse_fsync_common() local
583 struct fuse_file *ff = file->private_data; fuse_read_args_fill() local
764 struct fuse_file *ff = file->private_data; fuse_send_read() local
1034 struct fuse_file *ff = file->private_data; fuse_send_readpages() local
1108 fuse_write_args_fill(struct fuse_io_args * ia,struct fuse_file * ff,loff_t pos,size_t count) fuse_write_args_fill() argument
1147 struct fuse_file *ff = file->private_data; fuse_send_write() local
1194 struct fuse_file *ff = file->private_data; fuse_send_write_pages() local
1400 struct fuse_file *ff = file->private_data; fuse_dio_wr_exclusive_lock() local
1649 struct fuse_file *ff = file->private_data; fuse_direct_io() local
1813 struct fuse_file *ff = file->private_data; fuse_file_read_iter() local
1834 struct fuse_file *ff = file->private_data; fuse_file_write_iter() local
1856 struct fuse_file *ff = in->private_data; fuse_splice_read() local
1868 struct fuse_file *ff = out->private_data; fuse_splice_write() local
2010 struct fuse_file *ff; __fuse_write_file_get() local
2024 struct fuse_file *ff = __fuse_write_file_get(fi); fuse_write_file_get() local
2032 struct fuse_file *ff; fuse_write_inode() local
2088 fuse_writepage_args_setup(struct folio * folio,size_t offset,struct fuse_file * ff) fuse_writepage_args_setup() argument
2114 struct fuse_file *ff; global() member
2370 struct fuse_file *ff = file->private_data; fuse_file_mmap() local
2467 struct fuse_file *ff = file->private_data; fuse_lk_fill() local
2563 struct fuse_file *ff = file->private_data; fuse_file_flock() local
2607 struct fuse_file *ff = file->private_data; fuse_lseek() local
2690 struct fuse_file *ff; fuse_find_polled_node() local
2715 fuse_register_polled_file(struct fuse_conn * fc,struct fuse_file * ff) fuse_register_polled_file() argument
2731 struct fuse_file *ff = file->private_data; fuse_file_poll() local
2787 struct fuse_file *ff; fuse_notify_poll_wakeup() local
2822 struct fuse_file *ff = file->private_data; fuse_direct_IO() local
2925 struct fuse_file *ff = file->private_data; fuse_file_fallocate() local
[all...]
H A Dioctl.c220 struct fuse_file *ff = file->private_data; in fuse_do_ioctl() local
221 struct fuse_mount *fm = ff->fm; in fuse_do_ioctl()
223 .fh = ff->fh, in fuse_do_ioctl()
318 ap.args.nodeid = ff->nodeid; in fuse_do_ioctl()
438 static int fuse_priv_ioctl(struct inode *inode, struct fuse_file *ff, in fuse_priv_ioctl() argument
441 struct fuse_mount *fm = ff->fm; in fuse_priv_ioctl()
448 inarg.fh = ff->fh; in fuse_priv_ioctl()
463 args.nodeid = ff->nodeid; in fuse_priv_ioctl()
500 static void fuse_priv_ioctl_cleanup(struct inode *inode, struct fuse_file *ff) in fuse_priv_ioctl_cleanup() argument
502 fuse_file_release(inode, ff, O_RDONLY, NULL, S_ISDIR(inode->i_mode)); in fuse_priv_ioctl_cleanup()
[all …]
/linux/Documentation/networking/
H A Dvrf.rst189 link/ether 72:b3:ba:91:e2:24 brd ff:ff:ff:ff:ff:ff promiscuity 0
192 link/ether b6:6f:6e:f6:da:73 brd ff:ff:ff:ff:ff:ff promiscuity 0
195 link/ether 36:62:e8:7d:bb:8c brd ff:ff:ff:ff:ff:ff promiscuity 0
198 link/ether e6:28:b8:63:70:bb brd ff:ff:ff:ff:ff:ff promiscuity 0
238 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
240 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
242 link/ether 02:00:00:00:02:06 brd ff:ff:ff:ff:ff:ff
283 link/ether 02:00:00:00:02:02 brd ff:ff:ff:ff:ff:ff
288 inet6 fe80::ff:fe00:202/64 scope link
291 link/ether 02:00:00:00:02:03 brd ff:ff:ff:ff:ff:ff
[all …]
H A Dnet_failover.rst77 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
83 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
85 link/ether 52:54:00:00:12:53 brd ff:ff:ff:ff:ff:ff
/linux/arch/m68k/ifpsp060/
H A Dfplsp.sa74 dc.l $660861ff,$00007124,$60220c01,$00026608
75 dc.l $61ff0000,$6d226014,$0c010003,$660861ff
76 dc.l $00006f4c,$600661ff,$00002f8e,$4cee0303
83 dc.l $660861ff,$00002d3e,$60300c01,$00016608
84 dc.l $61ff0000,$70866022,$0c010002,$660861ff
93 dc.l $660861ff,$00002c9e,$60300c01,$00016608
94 dc.l $61ff0000,$6fe66022,$0c010002,$660861ff
103 dc.l $2c0e6030,$0c010001,$660861ff,$00006fc8
105 dc.l $0c010003,$660861ff,$00006d74,$600661ff
112 dc.l $ff631d41,$ff4e4a01,$660861ff,$00002b70
[all …]
/linux/Documentation/iio/
H A Dadxl313.rst215 000000d0 01 fc 31 00 c7 ff 03 fc 31 00 c7 ff 04 fc 33 00 |..1.....1.....3.|
216 000000e0 c8 ff 03 fc 32 00 c5 ff ff fc 32 00 c7 ff 0a fc |....2.....2.....|
217 000000f0 30 00 c8 ff 06 fc 33 00 c7 ff 01 fc 2f 00 c8 ff |0.....3...../...|
218 00000100 02 fc 32 00 c6 ff 04 fc 33 00 c8 ff 05 fc 33 00 |..2.....3.....3.|
219 00000110 ca ff 02 fc 31 00 c7 ff 02 fc 30 00 c9 ff 09 fc |....1.....0.....|
220 00000120 35 00 c9 ff 08 fc 35 00 c8 ff 02 fc 31 00 c5 ff |5.....5.....1...|
221 00000130 03 fc 32 00 c7 ff 04 fc 32 00 c7 ff 02 fc 31 00 |..2.....2.....1.|
222 00000140 c7 ff 08 fc 30 00 c7 ff 02 fc 32 00 c5 ff ff fc |....0.....2.....|
223 00000150 31 00 c5 ff 04 fc 31 00 c8 ff 03 fc 32 00 c8 ff |1.....1.....2...|
224 00000160 01 fc 31 00 c7 ff 05 fc 31 00 c3 ff 04 fc 31 00 |..1.....1.....1.|
[all …]
H A Dadis16475.rst362 00001680 01 1f 00 00 ff ff fe ef 00 00 47 bf 00 03 35 55 |..........G...5U|
363 00001690 01 1f 00 00 ff ff ff d9 00 00 46 f1 00 03 35 35 |..........F...55|
364 000016a0 01 1f 00 00 ff ff fe fc 00 00 46 cb 00 03 35 7b |..........F...5{|
365 000016b0 01 1f 00 00 ff ff fe 41 00 00 47 0d 00 03 35 8b |.......A..G...5.|
366 000016c0 01 1f 00 00 ff ff fe 37 00 00 46 b4 00 03 35 90 |.......7..F...5.|
367 000016d0 01 1d 00 00 ff ff fe 5a 00 00 45 d7 00 03 36 08 |.......Z..E...6.|
368 000016e0 01 1b 00 00 ff ff fe fb 00 00 45 e7 00 03 36 60 |..........E...6`|
369 000016f0 01 1a 00 00 ff ff ff 17 00 00 46 bc 00 03 36 de |..........F...6.|
370 00001700 01 1a 00 00 ff ff fe 59 00 00 46 d7 00 03 37 b8 |.......Y..F...7.|
371 00001710 01 1a 00 00 ff ff fe ae 00 00 46 95 00 03 37 ba |..........F...7.|
[all …]
/linux/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1d.sh714 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
746 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
776 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
785 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
H A Dvxlan_bridge_1q.sh720 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
755 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
787 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
797 in_ns ns1 $MZ w2 -Q $vid -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff \
/linux/drivers/clk/
H A Dclk-eyeq.c300 const struct eqc_fixed_factor *ff; in eqc_probe_init_fixed_factors() local
305 ff = &data->fixed_factors[i]; in eqc_probe_init_fixed_factors()
306 parent_hw = cells->hws[ff->parent]; in eqc_probe_init_fixed_factors()
310 hw = clk_hw_register_fixed_factor_index(dev, ff->name, in eqc_probe_init_fixed_factors()
311 ff->parent, 0, ff->mult, ff->div); in eqc_probe_init_fixed_factors()
314 hw = clk_hw_register_fixed_factor_parent_hw(dev, ff->name, in eqc_probe_init_fixed_factors()
315 parent_hw, 0, ff->mult, ff in eqc_probe_init_fixed_factors()
794 const struct eqc_fixed_factor *ff = &early_data->early_fixed_factors[i]; eqc_early_init() local
[all...]
/linux/drivers/hid/
H A Dhid-haptic.c237 struct ff_device *ff = dev->ff; in hid_haptic_upload_effect() local
238 struct hid_haptic_device *haptic = ff->private; in hid_haptic_upload_effect()
302 struct hid_haptic_device *haptic = dev->ff->private; in haptic_work_handler()
315 struct hid_haptic_device *haptic = dev->ff->private; in hid_haptic_playback()
337 struct hid_haptic_device *haptic = dev->ff->private; in hid_haptic_erase()
372 static void hid_haptic_destroy(struct ff_device *ff) in hid_haptic_destroy() argument
374 struct hid_haptic_device *haptic = ff->private; in hid_haptic_destroy()
385 for (r = 0; r < ff->max_effects; r++) in hid_haptic_destroy()
409 struct ff_device *ff; in hid_haptic_init() local
[all...]
/linux/drivers/clk/mediatek/
H A Dclk-mtk.c162 const struct mtk_fixed_factor *ff = &clks[i]; in mtk_clk_register_factors() local
164 if (!IS_ERR_OR_NULL(clk_data->hws[ff->id])) { in mtk_clk_register_factors()
165 pr_warn("Trying to register duplicate clock ID: %d\n", ff->id); in mtk_clk_register_factors()
169 hw = clk_hw_register_fixed_factor(NULL, ff->name, ff->parent_name, in mtk_clk_register_factors()
170 ff->flags, ff->mult, ff->div); in mtk_clk_register_factors()
173 pr_err("Failed to register clk %s: %pe\n", ff->name, in mtk_clk_register_factors()
178 clk_data->hws[ff in mtk_clk_register_factors()
185 const struct mtk_fixed_factor *ff = &clks[i]; mtk_clk_register_factors() local
207 const struct mtk_fixed_factor *ff = &clks[i - 1]; mtk_clk_unregister_factors() local
[all...]
/linux/Documentation/networking/device_drivers/ethernet/marvell/
H A Docteontx2.rst377 … state DOWN mode DEFAULT group default qlen 1000 link/ether f6:43:83:ee:26:21 brd ff:ff:ff:ff:ff:ff
378 … state DOWN mode DEFAULT group default qlen 1000 link/ether 12:b2:54:0e:24:54 brd ff:ff:ff:ff:ff:ff
379 … state DOWN mode DEFAULT group default qlen 1000 link/ether 4a:12:c4:4c:32:62 brd ff:ff:ff:ff:ff:ff
380 … state DOWN mode DEFAULT group default qlen 1000 link/ether ca:cb:68:0e:e2:6e brd ff:ff:ff:ff:ff:ff
381 … state DOWN mode DEFAULT group default qlen 1000 link/ether 06:cc:ad:b4:f0:93 brd ff:ff:ff:ff:ff:ff
/linux/kernel/liveupdate/
H A Dkexec_handover_debugfs.c66 struct fdt_debugfs *ff; in kho_debugfs_fdt_remove() local
68 list_for_each_entry(ff, &dbg->fdt_list, list) { in kho_debugfs_fdt_remove()
69 if (ff->wrapper.data == fdt) { in kho_debugfs_fdt_remove()
70 debugfs_remove(ff->file); in kho_debugfs_fdt_remove()
71 list_del(&ff->list); in kho_debugfs_fdt_remove()
72 kfree(ff); in kho_debugfs_fdt_remove()

12345