Home
last modified time | relevance | path

Searched refs:ff (Results 1 – 25 of 112) 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/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.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 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 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.c102 static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size) in __do_write_fd() argument
104 ssize_t ret = writen(ff->fd, buf, size); in __do_write_fd()
111 static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size) in __do_write_buf() argument
115 size_t new_size = ff->size; in __do_write_buf()
118 if (size + ff->offset > max_size) in __do_write_buf()
121 while (size > (new_size - ff->offset)) in __do_write_buf()
125 if (ff->size < new_size) { in __do_write_buf()
126 addr = realloc(ff->buf, new_size); in __do_write_buf()
129 ff->buf = addr; in __do_write_buf()
130 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(sizeof(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(sizeof(*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->count, 1); in fuse_file_alloc()
74 RB_CLEAR_NODE(&ff->polled_node); in fuse_file_alloc()
[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.sh708 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
740 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
770 in_ns ns1 $MZ w2 -c 1 -p 64 -a $mac -b ff:ff:ff:ff:ff:ff -B $dst \
779 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/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->id] = hw; in mtk_clk_register_factors()
185 const struct mtk_fixed_factor *ff = &clks[i]; in mtk_clk_register_factors() local
187 if (IS_ERR_OR_NULL(clk_data->hws[ff->id])) in mtk_clk_register_factors()
190 clk_hw_unregister_fixed_factor(clk_data->hws[ff->id]); in mtk_clk_register_factors()
[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()
/linux/drivers/clk/pistachio/
H A Dclk.c108 struct pistachio_fixed_factor *ff, in pistachio_clk_register_fixed_factor() argument
115 clk = clk_register_fixed_factor(NULL, ff[i].name, ff[i].parent, in pistachio_clk_register_fixed_factor()
116 0, 1, ff[i].div); in pistachio_clk_register_fixed_factor()
117 p->clk_data.clks[ff[i].id] = clk; in pistachio_clk_register_fixed_factor()
/linux/samples/bpf/
H A Dtest_cls_bpf.sh6 -m 90:e2:ba:ff:ff:ff -d 192.168.0.1 -t 4
/linux/drivers/video/fbdev/
H A Dpxa168fb.h408 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff) << 29) argument
414 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff) << 25) argument
441 #define DMA_FF_UNDERFLOW(ff) ((ff) << 29) argument
447 #define GRA_FF_UNDERFLOW(ff) ((ff) << 25) argument
/linux/drivers/video/fbdev/mmp/hw/
H A Dmmp_ctrl.h640 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff)<<29) argument
648 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff)<<25) argument
690 #define PN2_DMA_FF_UNDERFLOW_ENA(ff) ((ff)<<5) argument
696 #define PN2_GRA_FF_UNDERFLOW_ENA(ff) ((ff)<<1) argument
749 #define DMA_FF_UNDERFLOW(ff) ((ff)<<29) argument
757 #define GRA_FF_UNDERFLOW(ff) ((ff)<<25) argument
793 #define PN2_DMA_FF_UNDERFLOW(ff) ((ff)<<5) argument
799 #define PN2_GRA_FF_UNDERFLOW(ff) ((ff)<<1) argument

12345