Home
last modified time | relevance | path

Searched refs:fs (Results 1 – 25 of 2043) sorted by relevance

12345678910>>...82

/OK3568_Linux_fs/kernel/drivers/block/
H A Dswim3.c208 #define swim3_err(fmt, arg...) dev_err(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
209 #define swim3_warn(fmt, arg...) dev_warn(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
210 #define swim3_info(fmt, arg...) dev_info(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
213 #define swim3_dbg(fmt, arg...) dev_dbg(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
236 static void seek_track(struct floppy_state *fs, int n);
238 static void act(struct floppy_state *fs);
245 static int grab_drive(struct floppy_state *fs, enum swim_state state,
247 static void release_drive(struct floppy_state *fs);
248 static int fd_eject(struct floppy_state *fs);
257 static bool swim3_end_request(struct floppy_state *fs, blk_status_t err, unsigned int nr_bytes) in swim3_end_request() argument
[all …]
H A Dswim.c424 static inline int swim_track(struct floppy_state *fs, int track) in swim_track() argument
426 struct swim __iomem *base = fs->swd->base; in swim_track()
429 ret = swim_seek(base, track - fs->track); in swim_track()
432 fs->track = track; in swim_track()
435 fs->track = 0; in swim_track()
441 static int floppy_eject(struct floppy_state *fs) in floppy_eject() argument
443 struct swim __iomem *base = fs->swd->base; in floppy_eject()
445 swim_drive(base, fs->location); in floppy_eject()
449 fs->disk_in = 0; in floppy_eject()
450 fs->ejected = 1; in floppy_eject()
[all …]
/OK3568_Linux_fs/u-boot/fs/
H A Dfs.su
/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4_write.c42 (struct ext2_block_group *bg, const struct ext_filesystem *fs) in ext4fs_bg_free_inodes_inc() argument
45 if (fs->gdsize == 64) in ext4fs_bg_free_inodes_inc()
50 if (fs->gdsize == 64) in ext4fs_bg_free_inodes_inc()
55 (struct ext2_block_group *bg, const struct ext_filesystem *fs) in ext4fs_bg_free_blocks_inc() argument
58 if (fs->gdsize == 64) in ext4fs_bg_free_blocks_inc()
63 if (fs->gdsize == 64) in ext4fs_bg_free_blocks_inc()
71 struct ext_filesystem *fs = get_fs(); in ext4fs_update() local
76 (struct ext2_sblock *)fs->sb, (uint32_t)SUPERBLOCK_SIZE); in ext4fs_update()
79 for (i = 0; i < fs->no_blkgrp; i++) { in ext4fs_update()
80 bgd = ext4fs_get_group_descriptor(fs, i); in ext4fs_update()
[all …]
H A Dext4_common.c51 (const struct ext_filesystem *fs, uint32_t bg_idx) in ext4fs_get_group_descriptor() argument
53 return (struct ext2_block_group *)(fs->gdtable + (bg_idx * fs->gdsize)); in ext4fs_get_group_descriptor()
72 (struct ext2_block_group *bg, const struct ext_filesystem *fs) in ext4fs_bg_free_inodes_dec() argument
75 if (fs->gdsize == 64) in ext4fs_bg_free_inodes_dec()
80 if (fs->gdsize == 64) in ext4fs_bg_free_inodes_dec()
85 (struct ext2_block_group *bg, const struct ext_filesystem *fs) in ext4fs_bg_free_blocks_dec() argument
88 if (fs->gdsize == 64) in ext4fs_bg_free_blocks_dec()
93 if (fs->gdsize == 64) in ext4fs_bg_free_blocks_dec()
98 (struct ext2_block_group *bg, const struct ext_filesystem *fs) in ext4fs_bg_itable_unused_dec() argument
101 if (fs->gdsize == 64) in ext4fs_bg_itable_unused_dec()
[all …]
H A Dext4_journal.c36 struct ext_filesystem *fs = get_fs(); in ext4fs_init_journal() local
59 if (fs->blksz == 4096) { in ext4fs_init_journal()
60 temp = zalloc(fs->blksz); in ext4fs_init_journal()
63 journal_ptr[gindex]->buf = zalloc(fs->blksz); in ext4fs_init_journal()
66 ext4fs_devread(0, 0, fs->blksz, temp); in ext4fs_init_journal()
67 memcpy(temp + SUPERBLOCK_SIZE, fs->sb, SUPERBLOCK_SIZE); in ext4fs_init_journal()
68 memcpy(journal_ptr[gindex]->buf, temp, fs->blksz); in ext4fs_init_journal()
72 journal_ptr[gindex]->buf = zalloc(fs->blksz); in ext4fs_init_journal()
75 memcpy(journal_ptr[gindex]->buf, fs->sb, SUPERBLOCK_SIZE); in ext4fs_init_journal()
93 struct ext_filesystem *fs = get_fs(); in ext4fs_dump_metadata() local
[all …]
/OK3568_Linux_fs/kernel/fs/
H A Dfs_struct.c15 void set_fs_root(struct fs_struct *fs, const struct path *path) in set_fs_root() argument
20 spin_lock(&fs->lock); in set_fs_root()
21 write_seqcount_begin(&fs->seq); in set_fs_root()
22 old_root = fs->root; in set_fs_root()
23 fs->root = *path; in set_fs_root()
24 write_seqcount_end(&fs->seq); in set_fs_root()
25 spin_unlock(&fs->lock); in set_fs_root()
34 void set_fs_pwd(struct fs_struct *fs, const struct path *path) in set_fs_pwd() argument
39 spin_lock(&fs->lock); in set_fs_pwd()
40 write_seqcount_begin(&fs->seq); in set_fs_pwd()
[all …]
H A Dfilesystems.c38 struct file_system_type *get_filesystem(struct file_system_type *fs) in get_filesystem() argument
40 __module_get(fs->owner); in get_filesystem()
41 return fs; in get_filesystem()
44 void put_filesystem(struct file_system_type *fs) in put_filesystem() argument
46 module_put(fs->owner); in put_filesystem()
72 int register_filesystem(struct file_system_type * fs) in register_filesystem() argument
77 if (fs->parameters && in register_filesystem()
78 !fs_validate_description(fs->name, fs->parameters)) in register_filesystem()
81 BUG_ON(strchr(fs->name, '.')); in register_filesystem()
82 if (fs->next) in register_filesystem()
[all …]
H A DKconfig23 source "fs/ext2/Kconfig"
24 source "fs/ext4/Kconfig"
25 source "fs/jbd2/Kconfig"
34 source "fs/reiserfs/Kconfig"
35 source "fs/jfs/Kconfig"
37 source "fs/xfs/Kconfig"
38 source "fs/gfs2/Kconfig"
39 source "fs/ocfs2/Kconfig"
40 source "fs/btrfs/Kconfig"
41 source "fs/nilfs2/Kconfig"
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_filter.c75 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3); in set_tcb_field()
168 u8 *nat_lp = (u8 *)&f->fs.nat_lport; in set_nat_params()
169 u8 *nat_fp = (u8 *)&f->fs.nat_fport; in set_nat_params()
172 if (f->fs.type) { in set_nat_params()
174 WORD_MASK, f->fs.nat_lip[15] | in set_nat_params()
175 f->fs.nat_lip[14] << 8 | in set_nat_params()
176 f->fs.nat_lip[13] << 16 | in set_nat_params()
177 (u64)f->fs.nat_lip[12] << 24, 1); in set_nat_params()
180 WORD_MASK, f->fs.nat_lip[11] | in set_nat_params()
181 f->fs.nat_lip[10] << 8 | in set_nat_params()
[all …]
H A Dcxgb4_tc_flower.c128 static void cxgb4_action_natmode_tweak(struct ch_filter_specification *fs, in cxgb4_action_natmode_tweak() argument
140 fs->nat_mode = cxgb4_natmode_config_array[i].natmode; in cxgb4_action_natmode_tweak()
164 struct ch_filter_specification *fs) in cxgb4_process_flow_match() argument
193 fs->type = 1; in cxgb4_process_flow_match()
195 fs->val.ethtype = ethtype_key; in cxgb4_process_flow_match()
196 fs->mask.ethtype = ethtype_mask; in cxgb4_process_flow_match()
197 fs->val.proto = match.key->ip_proto; in cxgb4_process_flow_match()
198 fs->mask.proto = match.mask->ip_proto; in cxgb4_process_flow_match()
205 fs->type = 0; in cxgb4_process_flow_match()
206 memcpy(&fs->val.lip[0], &match.key->dst, sizeof(match.key->dst)); in cxgb4_process_flow_match()
[all …]
/OK3568_Linux_fs/external/mpp/mpp/codec/dec/h264/
H A Dh264d_dpb.c155 static void unmark_for_reference(H264_DecCtx_t *p_Dec, H264_FrameStore_t* fs) in unmark_for_reference() argument
158 if (fs->is_used & 1) { in unmark_for_reference()
159 if (fs->top_field) { in unmark_for_reference()
160 fs->top_field->used_for_reference = 0; in unmark_for_reference()
161 cur_pic = fs->top_field; in unmark_for_reference()
164 if (fs->is_used & 2) { in unmark_for_reference()
165 if (fs->bottom_field) { in unmark_for_reference()
166 fs->bottom_field->used_for_reference = 0; in unmark_for_reference()
167 cur_pic = fs->bottom_field; in unmark_for_reference()
170 if (fs->is_used == 3) { in unmark_for_reference()
[all …]
/OK3568_Linux_fs/kernel/drivers/clk/st/
H A Dclkgen-fsyn.c72 unsigned long output, struct stm_fs *fs);
260 static int clk_fs660c32_vco_get_rate(unsigned long input, struct stm_fs *fs, in clk_fs660c32_vco_get_rate() argument
263 unsigned long nd = fs->ndiv + 16; /* ndiv value */ in clk_fs660c32_vco_get_rate()
288 unsigned long output, struct stm_fs *fs) in clk_fs660c32_vco_get_params() argument
311 fs->ndiv = n - 16; /* Converting formula value to reg value */ in clk_fs660c32_vco_get_params()
471 static void quadfs_fsynth_program_enable(struct st_clk_quadfs_fsynth *fs) in quadfs_fsynth_program_enable() argument
477 CLKGEN_WRITE(fs, en[fs->chan], 1); in quadfs_fsynth_program_enable()
478 CLKGEN_WRITE(fs, en[fs->chan], 0); in quadfs_fsynth_program_enable()
481 static void quadfs_fsynth_program_rate(struct st_clk_quadfs_fsynth *fs) in quadfs_fsynth_program_rate() argument
490 CLKGEN_WRITE(fs, en[fs->chan], 0); in quadfs_fsynth_program_rate()
[all …]
/OK3568_Linux_fs/u-boot/fs/fat/
H A Dfat_write.su
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/
H A Dpersistence.hpp348 FileStorage(CvFileStorage* fs, bool owning=true);
414 CvFileStorage* operator *() { return fs.get(); } in operator *()
417 const CvFileStorage* operator *() const { return fs.get(); } in operator *()
470 Ptr<CvFileStorage> fs; //!< the underlying C FileStorage structure member in cv::FileStorage
522 FileNode(const CvFileStorage* fs, const CvFileNode* node);
616 const CvFileStorage* fs; member in cv::FileNode
641 FileNodeIterator(const CvFileStorage* fs, const CvFileNode* node, size_t ofs=0);
689 const CvFileStorage* fs; member in cv::FileNodeIterator
702 CV_EXPORTS void write( FileStorage& fs, const String& name, int value );
703 CV_EXPORTS void write( FileStorage& fs, const String& name, float value );
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/
H A Dpersistence.hpp348 FileStorage(CvFileStorage* fs, bool owning=true);
414 CvFileStorage* operator *() { return fs.get(); } in operator *()
417 const CvFileStorage* operator *() const { return fs.get(); } in operator *()
470 Ptr<CvFileStorage> fs; //!< the underlying C FileStorage structure member in cv::FileStorage
522 FileNode(const CvFileStorage* fs, const CvFileNode* node);
616 const CvFileStorage* fs; member in cv::FileNode
641 FileNodeIterator(const CvFileStorage* fs, const CvFileNode* node, size_t ofs=0);
689 const CvFileStorage* fs; member in cv::FileNodeIterator
702 CV_EXPORTS void write( FileStorage& fs, const String& name, int value );
703 CV_EXPORTS void write( FileStorage& fs, const String& name, float value );
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/
H A Dpersistence.hpp348 FileStorage(CvFileStorage* fs, bool owning=true);
414 CvFileStorage* operator *() { return fs.get(); } in operator *()
417 const CvFileStorage* operator *() const { return fs.get(); } in operator *()
470 Ptr<CvFileStorage> fs; //!< the underlying C FileStorage structure member in cv::FileStorage
522 FileNode(const CvFileStorage* fs, const CvFileNode* node);
616 const CvFileStorage* fs; member in cv::FileNode
641 FileNodeIterator(const CvFileStorage* fs, const CvFileNode* node, size_t ofs=0);
689 const CvFileStorage* fs; member in cv::FileNodeIterator
702 CV_EXPORTS void write( FileStorage& fs, const String& name, int value );
703 CV_EXPORTS void write( FileStorage& fs, const String& name, float value );
[all …]
/OK3568_Linux_fs/kernel/tools/lib/api/fs/
H A Dfs.c88 struct fs { struct
110 static struct fs fs__entries[] = { argument
149 static bool fs__read_mounts(struct fs *fs) in fs__read_mounts() argument
161 fs->path, type) == 2) { in fs__read_mounts()
163 if (strcmp(type, fs->name) == 0) in fs__read_mounts()
168 fs->checked = true; in fs__read_mounts()
169 return fs->found = found; in fs__read_mounts()
172 static int fs__valid_mount(const char *fs, long magic) in fs__valid_mount() argument
176 if (statfs(fs, &st_fs) < 0) in fs__valid_mount()
184 static bool fs__check_mounts(struct fs *fs) in fs__check_mounts() argument
[all …]
/OK3568_Linux_fs/kernel/Documentation/filesystems/
H A Dapi-summary.rst14 .. kernel-doc:: include/linux/fs.h
20 .. kernel-doc:: fs/dcache.c
29 .. kernel-doc:: fs/inode.c
32 .. kernel-doc:: fs/bad_inode.c
38 .. kernel-doc:: fs/super.c
44 .. kernel-doc:: fs/locks.c
47 .. kernel-doc:: fs/locks.c
53 .. kernel-doc:: fs/mpage.c
56 .. kernel-doc:: fs/namei.c
59 .. kernel-doc:: fs/buffer.c
[all …]
H A Dincfs.rst7 /sys/fs interface
10 Please update Documentation/ABI/testing/sysfs-fs-incfs if you update this
13 incfs creates the following files in /sys/fs.
18 /sys/fs/incremental-fs/features/corefs
21 /sys/fs/incremental-fs/features/v2
24 fs-verity support
35 /sys/fs/incremental-fs/features/zstd
41 For each incfs mount, the mount option sysfs_name=[name] creates a /sys/fs
44 /sys/fs/incremental-fs/instances/[name]
48 /sys/fs/incremental-fs/instances/[name]/reads_delayed_min
[all …]
/OK3568_Linux_fs/kernel/include/math-emu/
H A Dop-common.h36 #define _FP_UNPACK_CANONICAL(fs, wc, X) \ argument
41 _FP_FRAC_HIGH_RAW_##fs(X) |= _FP_IMPLBIT_##fs; \
43 X##_e -= _FP_EXPBIAS_##fs; \
55 _shift -= _FP_FRACXBITS_##fs; \
57 X##_e -= _FP_EXPBIAS_##fs - 1 + _shift; \
68 case _FP_EXPMAX_##fs: \
75 if (!(_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)) \
89 #define _FP_PACK_CANONICAL(fs, wc, X) \ argument
94 X##_e += _FP_EXPBIAS_##fs; \
98 if (_FP_FRAC_OVERP_##wc(fs, X)) \
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_fs_ethtool.c58 struct ethtool_rx_flow_spec *fs, in get_flow_table() argument
69 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) { in get_flow_table()
76 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table()
82 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table()
87 eth_ft = &priv->fs.ethtool.l2_ft[prio]; in get_flow_table()
212 parse_tcp4(void *headers_c, void *headers_v, struct ethtool_rx_flow_spec *fs) in parse_tcp4() argument
214 struct ethtool_tcpip4_spec *l4_mask = &fs->m_u.tcp_ip4_spec; in parse_tcp4()
215 struct ethtool_tcpip4_spec *l4_val = &fs->h_u.tcp_ip4_spec; in parse_tcp4()
225 parse_udp4(void *headers_c, void *headers_v, struct ethtool_rx_flow_spec *fs) in parse_udp4() argument
227 struct ethtool_tcpip4_spec *l4_mask = &fs->m_u.udp_ip4_spec; in parse_udp4()
[all …]
/OK3568_Linux_fs/buildroot/fs/
H A DConfig.in3 source "fs/axfs/Config.in"
4 source "fs/btrfs/Config.in"
5 source "fs/cloop/Config.in"
6 source "fs/cpio/Config.in"
7 source "fs/cramfs/Config.in"
8 source "fs/erofs/Config.in"
9 source "fs/ext2/Config.in"
10 source "fs/f2fs/Config.in"
11 source "fs/initramfs/Config.in"
12 source "fs/iso9660/Config.in"
[all …]
/OK3568_Linux_fs/kernel/fs/fuse/
H A Dvirtio_fs.c125 struct virtio_fs *fs = vq->vdev->priv; in vq_to_fsvq() local
127 return &fs->vqs[vq->index]; in vq_to_fsvq()
159 static void virtio_fs_put(struct virtio_fs *fs) in virtio_fs_put() argument
161 kref_put(&fs->refcount, release_virtio_fs_obj); in virtio_fs_put()
194 static void virtio_fs_drain_all_queues_locked(struct virtio_fs *fs) in virtio_fs_drain_all_queues_locked() argument
199 for (i = 0; i < fs->nvqs; i++) { in virtio_fs_drain_all_queues_locked()
200 fsvq = &fs->vqs[i]; in virtio_fs_drain_all_queues_locked()
205 static void virtio_fs_drain_all_queues(struct virtio_fs *fs) in virtio_fs_drain_all_queues() argument
214 virtio_fs_drain_all_queues_locked(fs); in virtio_fs_drain_all_queues()
218 static void virtio_fs_start_all_queues(struct virtio_fs *fs) in virtio_fs_start_all_queues() argument
[all …]
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-fs-nilfs22 What: /sys/fs/nilfs2/features/revision
10 What: /sys/fs/nilfs2/features/README
14 Describe attributes of /sys/fs/nilfs2/features group.
16 What: /sys/fs/nilfs2/<device>/revision
24 What: /sys/fs/nilfs2/<device>/blocksize
30 What: /sys/fs/nilfs2/<device>/device_size
36 What: /sys/fs/nilfs2/<device>/free_blocks
42 What: /sys/fs/nilfs2/<device>/uuid
48 What: /sys/fs/nilfs2/<device>/volume_name
54 What: /sys/fs/nilfs2/<device>/README
[all …]

12345678910>>...82