| /rk3399_rockchip-uboot/fs/ext4/ |
| H A D | ext4_write.c | 42 (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 D | ext4_journal.c | 36 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 …]
|
| H A D | ext4_common.c | 51 (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 D | ext4_common.h | 78 (const struct ext_filesystem *fs, uint32_t bg_idx); 80 const struct ext_filesystem *fs); 82 const struct ext_filesystem *fs); 84 const struct ext_filesystem *fs); 88 const struct ext_filesystem *fs);
|
| H A D | dev.c | 59 struct ext_filesystem *fs = get_fs(); in ext4_read_superblock() local 60 int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz; in ext4_read_superblock() 61 int off = SUPERBLOCK_START % fs->dev_desc->blksz; in ext4_read_superblock()
|
| H A D | ext4fs.c | 52 struct ext_filesystem *fs = get_fs(); in ext4fs_read_file() local 55 int log2blksz = fs->dev_desc->log2blksz; in ext4fs_read_file()
|
| /rk3399_rockchip-uboot/fs/ |
| H A D | Kconfig | 7 source "fs/cbfs/Kconfig" 9 source "fs/ext4/Kconfig" 11 source "fs/reiserfs/Kconfig" 13 source "fs/fat/Kconfig" 15 source "fs/jffs2/Kconfig" 17 source "fs/ubifs/Kconfig" 19 source "fs/cramfs/Kconfig" 21 source "fs/yaffs2/Kconfig"
|
| H A D | Makefile | 13 obj-y += fs.o
|
| /rk3399_rockchip-uboot/drivers/usb/emul/ |
| H A D | sandbox_keyb.c | 202 struct usb_string *fs; in sandbox_keyb_bind() local 204 fs = plat->keyb_strings; in sandbox_keyb_bind() 205 fs[0].id = STRINGID_MANUFACTURER; in sandbox_keyb_bind() 206 fs[0].s = "sandbox"; in sandbox_keyb_bind() 207 fs[1].id = STRINGID_PRODUCT; in sandbox_keyb_bind() 208 fs[1].s = "keyboard"; in sandbox_keyb_bind() 209 fs[2].id = STRINGID_SERIAL; in sandbox_keyb_bind() 210 fs[2].s = dev->name; in sandbox_keyb_bind()
|
| H A D | sandbox_flash.c | 383 struct usb_string *fs; in sandbox_flash_bind() local 385 fs = plat->flash_strings; in sandbox_flash_bind() 386 fs[0].id = STRINGID_MANUFACTURER; in sandbox_flash_bind() 387 fs[0].s = "sandbox"; in sandbox_flash_bind() 388 fs[1].id = STRINGID_PRODUCT; in sandbox_flash_bind() 389 fs[1].s = "flash"; in sandbox_flash_bind() 390 fs[2].id = STRINGID_SERIAL; in sandbox_flash_bind() 391 fs[2].s = dev->name; in sandbox_flash_bind()
|
| /rk3399_rockchip-uboot/test/fs/ |
| H A D | fs-test.sh | 172 fs) 519 echo "Creating files in $fs image if not already present." 522 OUT_FILE="${OUT}.$1.${fs}.out" 523 test_image $IMAGE $fs $SMALL_FILE $BIG_FILE $1 "" \ 553 for fs in ext4 fat; do 555 echo "Creating $fs image if not already present." 556 IMAGE=${IMG}.${fs}.img 557 MD5_FILE_FS="${MD5_FILE}.${fs}" 558 create_image $IMAGE $fs 561 echo "Creating files in $fs image if not already present." [all …]
|
| /rk3399_rockchip-uboot/tools/patman/test/ |
| H A D | 0002-fdt-Correct-cast-for-sandbox-in-fdtdec_setup_memory_.patch | 34 fs/fat/fat.c | 1 + 39 diff --git a/fs/fat/fat.c b/fs/fat/fat.c 41 --- a/fs/fat/fat.c 42 +++ b/fs/fat/fat.c
|
| H A D | 0000-cover-letter.patch | 16 fs/fat/fat.c | 1 +
|
| /rk3399_rockchip-uboot/arch/x86/lib/ |
| H A D | bios_asm.S | 61 mov %ax, %fs 104 mov %ax, %fs 128 mov %ax, %fs 246 push %fs 293 pop %fs
|
| /rk3399_rockchip-uboot/arch/x86/cpu/ |
| H A D | wakeup.S | 45 mov %ax, %fs 61 movw %ax, %fs
|
| H A D | start.S | 77 movw %ax, %fs 139 mov %fs:0, %edx
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | gconf.c | 506 GtkWidget *fs; in on_load1_activate() local 508 fs = gtk_file_selection_new(_("Load file...")); in on_load1_activate() 509 g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(fs)->ok_button), in on_load1_activate() 511 G_CALLBACK(load_filename), (gpointer) fs); in on_load1_activate() 513 (GTK_FILE_SELECTION(fs)->ok_button), in on_load1_activate() 515 (gpointer) fs); in on_load1_activate() 517 (GTK_FILE_SELECTION(fs)->cancel_button), in on_load1_activate() 519 (gpointer) fs); in on_load1_activate() 520 gtk_widget_show(fs); in on_load1_activate() 547 GtkWidget *fs; in on_save_as1_activate() local [all …]
|
| /rk3399_rockchip-uboot/board/boundary/nitrogen6x/ |
| H A D | 6x_upgrade.txt | 4 if ${fs}load ${dtype} ${disk}:1 12000000 u-boot.imx || ${fs}load ${dtype} ${disk}:1 12000000 u-boot…
|
| H A D | 6x_bootscript_android.txt | 63 ${fs}load ${dtype} ${disk}:1 10800000 uImage && ${fs}load ${dtype} ${disk}:1 12800000 uramdisk.img …
|
| H A D | 6x_bootscript_android_recovery.txt | 63 ${fs}load ${dtype} ${disk}:1 10800000 uImage && ${fs}load ${dtype} ${disk}:1 12800000 uramdisk.img …
|
| H A D | 6x_bootscript.txt | 62 ${fs}load ${dtype} ${disk}:1 10800000 /boot/uImage && bootm 10800000 ;
|
| /rk3399_rockchip-uboot/include/linux/usb/ |
| H A D | composite.h | 150 struct usb_endpoint_descriptor *fs) in ep_choose() argument 154 return fs; in ep_choose()
|
| /rk3399_rockchip-uboot/drivers/bios_emulator/ |
| H A D | biosemu.c | 257 M.x86.R_FS = sregs->fs; in BE_callRealMode() 283 sregs->fs = M.x86.R_FS; in BE_callRealMode() 348 M.x86.R_FS = sregs->fs; in BE_int86x() 369 sregs->fs = M.x86.R_FS; in BE_int86x()
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/mtd/ |
| H A D | mtd-physmap.txt | 56 fs@0 { 57 label = "fs";
|
| /rk3399_rockchip-uboot/drivers/usb/gadget/ |
| H A D | storage_common.c | 573 fsg_ep_desc(struct usb_gadget *g, struct usb_endpoint_descriptor *fs, in fsg_ep_desc() argument 597 speed_desc = fs; in fsg_ep_desc()
|