Home
last modified time | relevance | path

Searched refs:super (Results 1 – 143 of 143) sorted by relevance

/linux-4.1.27/fs/logfs/
Dsuper.c56 struct logfs_super *super = logfs_super(sb); in dump_segfile() local
60 for (segno = 0; segno < super->s_no_segs; segno++) { in dump_segfile()
64 if (++segno < super->s_no_segs) { in dump_segfile()
69 if (++segno < super->s_no_segs) { in dump_segfile()
74 if (++segno < super->s_no_segs) { in dump_segfile()
100 struct logfs_super *super = logfs_super(sb); in logfs_statfs() local
104 stats->f_blocks = super->s_size >> LOGFS_BLOCK_BITS >> 3; in logfs_statfs()
105 stats->f_bfree = super->s_free_bytes >> sb->s_blocksize_bits; in logfs_statfs()
106 stats->f_bavail = super->s_free_bytes >> sb->s_blocksize_bits; in logfs_statfs()
115 struct logfs_super *super = _super; in logfs_sb_set() local
[all …]
Djournal.c13 struct logfs_super *super = logfs_super(sb); in logfs_calc_free() local
14 u64 reserve, no_segs = super->s_no_segs; in logfs_calc_free()
20 super->s_no_journal_segs = 0; in logfs_calc_free()
23 if (super->s_journal_seg[i]) { in logfs_calc_free()
25 super->s_no_journal_segs++; in logfs_calc_free()
29 no_segs -= 2 * super->s_total_levels; in logfs_calc_free()
31 free = no_segs * (super->s_segsize - LOGFS_SEGMENT_RESERVE); in logfs_calc_free()
32 free -= super->s_used_bytes; in logfs_calc_free()
34 free -= super->s_total_levels * 4096; in logfs_calc_free()
40 reserve = super->s_bad_segments + super->s_bad_seg_reserve; in logfs_calc_free()
[all …]
Dgc.c33 struct logfs_super *super = logfs_super(sb); in no_free_segments() local
35 return super->s_free_list.count; in no_free_segments()
41 struct logfs_super *super = logfs_super(sb); in root_distance() local
50 return super->s_ifile_levels + super->s_iblock_levels - gc_level; in root_distance()
56 return super->s_ifile_levels - (gc_level - 6); in root_distance()
61 return super->s_ifile_levels + super->s_iblock_levels; in root_distance()
67 struct logfs_super *super = logfs_super(sb); in segment_is_reserved() local
73 reserved = btree_lookup32(&super->s_reserved_segments, segno); in segment_is_reserved()
79 area = super->s_area[i]; in segment_is_reserved()
127 struct logfs_super *super = logfs_super(sb); in logfs_gc_segment() local
[all …]
Ddev_bdev.c62 struct logfs_super *super = logfs_super(sb); in writeseg_end_io() local
72 if (atomic_dec_and_test(&super->s_pending_writes)) in writeseg_end_io()
79 struct logfs_super *super = logfs_super(sb); in __bdev_writeseg() local
80 struct address_space *mapping = super->s_mapping_inode->i_mapping; in __bdev_writeseg()
86 max_pages = min(nr_pages, (size_t) bio_get_nr_vecs(super->s_bdev)); in __bdev_writeseg()
96 bio->bi_bdev = super->s_bdev; in __bdev_writeseg()
100 atomic_inc(&super->s_pending_writes); in __bdev_writeseg()
123 bio->bi_bdev = super->s_bdev; in __bdev_writeseg()
127 atomic_inc(&super->s_pending_writes); in __bdev_writeseg()
134 struct logfs_super *super = logfs_super(sb); in bdev_writeseg() local
[all …]
Dsegment.c17 struct logfs_super *super = logfs_super(sb); in logfs_mark_segment_bad() local
18 struct btree_head32 *head = &super->s_reserved_segments; in logfs_mark_segment_bad()
31 struct logfs_super *super = logfs_super(sb); in logfs_erase_segment() local
33 super->s_gec++; in logfs_erase_segment()
35 return super->s_devops->erase(sb, (u64)segno << super->s_segshift, in logfs_erase_segment()
36 super->s_segsize, ensure_erase); in logfs_erase_segment()
55 struct logfs_super *super = logfs_super(sb); in get_mapping_page() local
56 struct address_space *mapping = super->s_mapping_inode->i_mapping; in get_mapping_page()
57 filler_t *filler = super->s_devops->readpage; in get_mapping_page()
129 struct logfs_super *super = logfs_super(sb); in pad_full_pages() local
[all …]
Dinode.c122 struct logfs_super *super = logfs_super(sb); in logfs_safe_iget() local
126 return super->s_master_inode; in logfs_safe_iget()
128 return super->s_segfile_inode; in logfs_safe_iget()
131 list_for_each_entry(li, &super->s_freeing_list, li_freeing_list) in logfs_safe_iget()
313 struct logfs_super *super = logfs_super(inode->i_sb); in logfs_drop_inode() local
317 list_move(&li->li_freeing_list, &super->s_freeing_list); in logfs_drop_inode()
325 struct logfs_super *super = logfs_super(sb); in logfs_set_ino_generation() local
328 mutex_lock(&super->s_journal_mutex); in logfs_set_ino_generation()
329 ino = logfs_seek_hole(super->s_master_inode, super->s_last_ino + 1); in logfs_set_ino_generation()
330 super->s_last_ino = ino; in logfs_set_ino_generation()
[all …]
Ddev_mtd.c38 struct logfs_super *super = logfs_super(sb); in loffs_mtd_write() local
39 struct mtd_info *mtd = super->s_mtd; in loffs_mtd_write()
44 if (super->s_flags & LOGFS_SB_FLAG_RO) in loffs_mtd_write()
48 BUG_ON(ofs != (ofs >> super->s_writeshift) << super->s_writeshift); in loffs_mtd_write()
75 struct logfs_super *super = logfs_super(sb); in logfs_mtd_erase_mapping() local
76 struct address_space *mapping = super->s_mapping_inode->i_mapping; in logfs_mtd_erase_mapping()
150 struct logfs_super *super = logfs_super(sb); in logfs_mtd_find_first_sb() local
151 struct address_space *mapping = super->s_mapping_inode->i_mapping; in logfs_mtd_find_first_sb()
153 struct mtd_info *mtd = super->s_mtd; in logfs_mtd_find_first_sb()
167 struct logfs_super *super = logfs_super(sb); in logfs_mtd_find_last_sb() local
[all …]
Dreadwrite.c207 struct logfs_super *super = logfs_super(sb); in prelock_page() local
216 super->s_lock_count++; in prelock_page()
224 struct logfs_super *super = logfs_super(sb); in preunlock_page() local
232 if (super->s_lock_count) in preunlock_page()
233 super->s_lock_count--; in preunlock_page()
249 struct logfs_super *super = logfs_super(sb); in logfs_get_wblocks() local
255 mutex_lock(&super->s_write_mutex); in logfs_get_wblocks()
264 struct logfs_super *super = logfs_super(sb); in logfs_put_wblocks() local
271 mutex_unlock(&super->s_write_mutex); in logfs_put_wblocks()
383 struct logfs_super *super = logfs_super(sb); in init_shadow_tree() local
[all …]
Ddir.c215 struct logfs_super *super = logfs_super(dir->i_sb); in logfs_unlink() local
243 mutex_lock(&super->s_dirop_mutex); in logfs_unlink()
260 mutex_unlock(&super->s_dirop_mutex); in logfs_unlink()
410 struct logfs_super *super = logfs_super(dir->i_sb); in __logfs_create() local
424 mutex_lock(&super->s_dirop_mutex); in __logfs_create()
462 mutex_unlock(&super->s_dirop_mutex); in __logfs_create()
588 struct logfs_super *super = logfs_super(old_dir->i_sb); in logfs_rename_cross() local
608 mutex_lock(&super->s_dirop_mutex); in logfs_rename_cross()
615 super->s_rename_dir = 0; in logfs_rename_cross()
616 super->s_rename_pos = 0; in logfs_rename_cross()
[all …]
DMakefile11 logfs-y += super.o
Dfile.c169 struct logfs_super *super = logfs_super(sb); in logfs_invalidatepage() local
171 super->s_dirty_pages -= block->reserved_bytes; in logfs_invalidatepage()
/linux-4.1.27/drivers/clk/tegra/
Dclk-super.c135 struct tegra_clk_super_mux *super; in tegra_clk_register_super_mux() local
139 super = kzalloc(sizeof(*super), GFP_KERNEL); in tegra_clk_register_super_mux()
140 if (!super) { in tegra_clk_register_super_mux()
151 super->reg = reg; in tegra_clk_register_super_mux()
152 super->pllx_index = pllx_index; in tegra_clk_register_super_mux()
153 super->div2_index = div2_index; in tegra_clk_register_super_mux()
154 super->lock = lock; in tegra_clk_register_super_mux()
155 super->width = width; in tegra_clk_register_super_mux()
156 super->flags = clk_super_flags; in tegra_clk_register_super_mux()
159 super->hw.init = &init; in tegra_clk_register_super_mux()
[all …]
DMakefile8 obj-y += clk-super.o
13 obj-y += clk-tegra-super-gen4.o
/linux-4.1.27/fs/cramfs/
Dinode.c259 struct cramfs_super super; in cramfs_fill_super() local
277 memcpy(&super, cramfs_read(sb, 0, sizeof(super)), sizeof(super)); in cramfs_fill_super()
281 if (super.magic != CRAMFS_MAGIC) { in cramfs_fill_super()
283 if (super.magic == CRAMFS_MAGIC_WEND) { in cramfs_fill_super()
291 memcpy(&super, cramfs_read(sb, 512, sizeof(super)), sizeof(super)); in cramfs_fill_super()
293 if (super.magic != CRAMFS_MAGIC) { in cramfs_fill_super()
294 if (super.magic == CRAMFS_MAGIC_WEND && !silent) in cramfs_fill_super()
303 if (super.flags & ~CRAMFS_SUPPORTED_FLAGS) { in cramfs_fill_super()
309 if (!S_ISDIR(super.root.mode)) { in cramfs_fill_super()
314 super.root.mode |= (S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); in cramfs_fill_super()
[all …]
/linux-4.1.27/fs/efs/
Dsuper.c238 static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) { in efs_validate_super() argument
240 if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) in efs_validate_super()
243 sb->fs_magic = be32_to_cpu(super->fs_magic); in efs_validate_super()
244 sb->total_blocks = be32_to_cpu(super->fs_size); in efs_validate_super()
245 sb->first_block = be32_to_cpu(super->fs_firstcg); in efs_validate_super()
246 sb->group_size = be32_to_cpu(super->fs_cgfsize); in efs_validate_super()
247 sb->data_free = be32_to_cpu(super->fs_tfree); in efs_validate_super()
248 sb->inode_free = be32_to_cpu(super->fs_tinode); in efs_validate_super()
249 sb->inode_blocks = be16_to_cpu(super->fs_cgisize); in efs_validate_super()
250 sb->total_groups = be16_to_cpu(super->fs_ncg); in efs_validate_super()
DMakefile7 efs-objs := super.o inode.o namei.o dir.o file.o symlink.o
Dinode.c47 struct inode *efs_iget(struct super_block *super, unsigned long ino) in efs_iget() argument
53 struct efs_sb_info *sb = SUPER_INFO(super); in efs_iget()
59 inode = iget_locked(super, ino); in efs_iget()
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Dtx.c110 struct _carl9170_tx_superframe *super = (void *) skb->data; in __carl9170_get_tx_sta() local
111 struct ieee80211_hdr *hdr = (void *) super->frame_data; in __carl9170_get_tx_sta()
115 vif_id = (super->s.misc & CARL9170_TX_SUPER_MISC_VIF_ID) >> in __carl9170_get_tx_sta()
192 struct _carl9170_tx_superframe *super = (void *) skb->data; in carl9170_alloc_dev_space() local
213 super = (void *) skb->data; in carl9170_alloc_dev_space()
222 super->s.cookie = (u8) cookie + 1; in carl9170_alloc_dev_space()
228 struct _carl9170_tx_superframe *super = (void *) skb->data; in carl9170_release_dev_space() local
232 cookie = super->s.cookie; in carl9170_release_dev_space()
234 super->s.cookie = 0; in carl9170_release_dev_space()
293 struct _carl9170_tx_superframe *super; in carl9170_tx_release() local
[all …]
Drx.c592 struct _carl9170_tx_superframe *super = (void *)entry_skb->data; in carl9170_ba_check() local
593 struct ieee80211_bar *entry_bar = (void *)super->frame_data; in carl9170_ba_check()
/linux-4.1.27/fs/befs/
Ddebug.c223 befs_dump_index_entry(const struct super_block *sb, befs_disk_btree_super * super) in befs_dump_index_entry() argument
228 befs_debug(sb, " magic %08x", fs32_to_cpu(sb, super->magic)); in befs_dump_index_entry()
229 befs_debug(sb, " node_size %u", fs32_to_cpu(sb, super->node_size)); in befs_dump_index_entry()
230 befs_debug(sb, " max_depth %08x", fs32_to_cpu(sb, super->max_depth)); in befs_dump_index_entry()
232 befs_debug(sb, " data_type %08x", fs32_to_cpu(sb, super->data_type)); in befs_dump_index_entry()
234 fs64_to_cpu(sb, super->root_node_ptr)); in befs_dump_index_entry()
236 fs64_to_cpu(sb, super->free_node_ptr)); in befs_dump_index_entry()
238 fs64_to_cpu(sb, super->max_size)); in befs_dump_index_entry()
DChangeLog103 (super.c, debug.c) [WD]
148 (datastream.c, btree.c super.c inode.c) [WD]
160 (super.c inode.c) [WD]
171 is the new way. (inode.c, super.c) [WD]
187 symlink string). (super.c, inode.c, befs_fs.h) [WD]
212 fields set (inode.c and super.c).
239 (super.c). Now we check to see if log_start and log_end differ. If so,
242 * Fixed an extra instance of MOD_DEC_USE_COUNT in super.c
335 (fs/befs/super.c) (fs/befs/inode.c)
341 (fs/befs/super.c)
[all …]
Dbefs.h107 BEFS_SB(const struct super_block *super) in BEFS_SB() argument
109 return (struct befs_sb_info *) super->s_fs_info; in BEFS_SB()
DMakefile7 befs-objs := datastream.o btree.o super.o inode.o debug.o io.o linuxvfs.o
/linux-4.1.27/fs/afs/
Dmntpt.c127 struct afs_super_info *super; in afs_mntpt_do_automount() local
197 super = AFS_FS_S(mntpt->d_sb); in afs_mntpt_do_automount()
199 strcpy(options + 5, super->volume->cell->name); in afs_mntpt_do_automount()
200 if (super->volume->type == AFSVL_RWVOL || rwpath) in afs_mntpt_do_automount()
DMakefile24 super.o \
/linux-4.1.27/drivers/md/
Ddm-log-writes.c321 struct log_write_super super; in log_super() local
323 super.magic = cpu_to_le64(WRITE_LOG_MAGIC); in log_super()
324 super.version = cpu_to_le64(WRITE_LOG_VERSION); in log_super()
325 super.nr_entries = cpu_to_le64(lc->logged_entries); in log_super()
326 super.sectorsize = cpu_to_le32(lc->sectorsize); in log_super()
328 if (write_metadata(lc, &super, sizeof(super), NULL, 0, 0)) { in log_super()
347 bool super = false; in log_writes_kthread() local
381 super = (block->flags & (LOG_FUA_FLAG | LOG_MARK_FLAG)); in log_writes_kthread()
382 if (super) in log_writes_kthread()
391 if (!ret && super) in log_writes_kthread()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/dmaobj/
Dbase.c103 if (!client->super) { in nvkm_dmaobj_create_()
112 if (!client->super) in nvkm_dmaobj_create_()
118 if (!client->super) in nvkm_dmaobj_create_()
/linux-4.1.27/scripts/gdb/linux/
Dtasks.py55 super(LxTaskByPidFunc, self).__init__("lx_task_by_pid")
94 super(LxThreadInfoFunc, self).__init__("lx_thread_info")
Dmodules.py48 super(LxModule, self).__init__("lx_module")
68 super(LxLsmod, self).__init__("lx-lsmod", gdb.COMMAND_DATA)
Dcpus.py111 super(PerCpu, self).__init__("lx_per_cpu")
128 super(LxCurrentFunc, self).__init__("lx_current")
Dsymbols.py25 super(LoadModuleBreakpoint, self).__init__(spec, internal=True)
72 super(LxSymbols, self).__init__("lx-symbols", gdb.COMMAND_FILES,
Ddmesg.py24 super(LxDmesg, self).__init__("lx-dmesg", gdb.COMMAND_DATA)
Dutils.py63 super(ContainerOf, self).__init__("container_of")
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Dgeneric.txt5 speed. Valid arguments are "super-speed", "high-speed",
22 maximum-speed = "super-speed";
/linux-4.1.27/drivers/gpu/drm/nouveau/
Dnouveau_nvif.c55 nvkm_client_ioctl(void *priv, bool super, void *data, u32 size, void **hack) in nvkm_client_ioctl() argument
57 return nvkm_ioctl(priv, super, data, size, hack); in nvkm_client_ioctl()
Dnouveau_chan.c399 bool super; in nouveau_channel_new() local
403 super = cli->base.super; in nouveau_channel_new()
404 cli->base.super = true; in nouveau_channel_new()
423 cli->base.super = super; in nouveau_channel_new()
Dnouveau_abi16.c469 client->super = true; in nouveau_abi16_ioctl_notifierobj_alloc()
478 client->super = false; in nouveau_abi16_ioctl_notifierobj_alloc()
Dnouveau_drm.c832 cli->base.super = false; in nouveau_drm_open()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvif/
Dclient.c32 return client->driver->ioctl(client->base.priv, client->super, data, size, NULL); in nvif_client_ioctl()
84 client->super = true; in nvif_client_init()
Dobject.c50 return client->driver->ioctl(client->base.priv, client->super, data, size, hack); in nvif_object_ioctl()
/linux-4.1.27/arch/m68k/ifpsp060/
Dos.S157 dmrbs: move.b (%a0),%d0 | fetch super byte
193 dmrws: move.w (%a0), %d0 | fetch super word
228 dmrls: move.l (%a0),%d0 | fetch super longword
250 dmwbs: move.b %d0,(%a0) | store super byte
273 dmwws: move.w %d0,(%a0) | store super word
296 dmwls: move.l %d0,(%a0) | store super longword
/linux-4.1.27/drivers/xen/xenfs/
DMakefile3 xenfs-y = super.o
/linux-4.1.27/fs/efivarfs/
DMakefile7 efivarfs-objs := inode.o file.o super.o
/linux-4.1.27/fs/overlayfs/
DMakefile7 overlay-objs := super.o inode.o dir.o readdir.o copy_up.o
/linux-4.1.27/fs/romfs/
DMakefile7 romfs-y := storage.o super.o
/linux-4.1.27/fs/adfs/
DMakefile7 adfs-objs := dir.o dir_f.o dir_fplus.o file.o inode.o map.o super.o
/linux-4.1.27/fs/affs/
DMakefile9 affs-objs := super.o namei.o inode.o file.o dir.o amigaffs.o bitmap.o symlink.o
DChanges225 flush the super block, and rw remounts didn't
285 is no pointer to the super block available.)
302 - The super block is now searched in the block that
/linux-4.1.27/fs/sysv/
DMakefile8 namei.o super.o symlink.o
/linux-4.1.27/fs/ufs/
DMakefile8 namei.o super.o symlink.o truncate.o util.o
/linux-4.1.27/fs/hpfs/
DMakefile8 inode.o map.o name.o namei.o super.o
/linux-4.1.27/fs/ecryptfs/
DMakefile7 ecryptfs-y := dentry.o file.o inode.o main.o super.o mmap.o read_write.o \
/linux-4.1.27/fs/udf/
DMakefile8 partition.o super.o truncate.o symlink.o \
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/disp/
Dnv50.c1881 u32 super = nv_rd32(priv, 0x610030); in nv50_disp_intr_supervisor() local
1884 nv_debug(priv, "supervisor 0x%08x 0x%08x\n", priv->super, super); in nv50_disp_intr_supervisor()
1886 if (priv->super & 0x00000010) { in nv50_disp_intr_supervisor()
1889 if (!(super & (0x00000020 << head))) in nv50_disp_intr_supervisor()
1891 if (!(super & (0x00000080 << head))) in nv50_disp_intr_supervisor()
1896 if (priv->super & 0x00000020) { in nv50_disp_intr_supervisor()
1898 if (!(super & (0x00000080 << head))) in nv50_disp_intr_supervisor()
1903 if (!(super & (0x00000200 << head))) in nv50_disp_intr_supervisor()
1908 if (!(super & (0x00000080 << head))) in nv50_disp_intr_supervisor()
1913 if (priv->super & 0x00000040) { in nv50_disp_intr_supervisor()
[all …]
Dgf110.c1103 nv_debug(priv, "supervisor %d\n", ffs(priv->super)); in gf110_disp_intr_supervisor()
1109 if (priv->super & 0x00000001) { in gf110_disp_intr_supervisor()
1118 if (priv->super & 0x00000002) { in gf110_disp_intr_supervisor()
1138 if (priv->super & 0x00000004) { in gf110_disp_intr_supervisor()
1227 priv->super = (stat & 0x00000007); in gf110_disp_intr()
1229 nv_wr32(priv, 0x6100ac, priv->super); in gf110_disp_intr()
Dnv50.h17 u32 super; member
/linux-4.1.27/fs/hfs/
DMakefile9 part_tbl.o string.o super.o sysdep.o trans.o
/linux-4.1.27/Documentation/
Dmd-cluster.txt12 | idle | md super | bm super [0] + bits |
13 | bm bits[0, contd] | bm super[1] + bits | bm bits[1, contd] |
14 | bm super[2] + bits | bm bits [2, contd] | bm super[3] + bits |
Dmd.txt28 other modes are only supported with persistent super blocks
129 Specific Rules that apply to format-0 super block arrays, and
355 super
DCodingStyle66 is super simple. Avoid tricky expressions.
Dkernel-parameters.txt1489 By default, super page will be supported if Intel IOMMU
1490 has the capability. With this option, super page will
/linux-4.1.27/fs/ext2/
DMakefile8 ioctl.o namei.o super.o symlink.o
/linux-4.1.27/drivers/md/bcache/
DMakefile5 io.o journal.o movinggc.o request.o stats.o super.o sysfs.o trace.o\
/linux-4.1.27/fs/ceph/
DMakefile7 ceph-y := super.o inode.o dir.o file.o locks.o addr.o ioctl.o \
/linux-4.1.27/fs/f2fs/
DMakefile3 f2fs-y := dir.o file.o inode.o namei.o hash.o super.o inline.o
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvif/
Ddriver.h11 int (*ioctl)(void *priv, bool super, void *data, u32 size, void **hack);
Dclient.h10 bool super; member
/linux-4.1.27/fs/ext3/
DMakefile8 ioctl.o namei.o super.o symlink.o hash.o resize.o ext3_jbd.o
/linux-4.1.27/fs/nilfs2/
DMakefile2 nilfs2-y := inode.o file.o dir.o super.o namei.o page.o mdt.o \
/linux-4.1.27/fs/hfsplus/
DMakefile7 hfsplus-objs := super.o options.o inode.o ioctl.o extents.o catalog.o dir.o btree.o \
/linux-4.1.27/fs/ntfs/
DMakefile6 index.o inode.o mft.o mst.o namei.o runlist.o super.o sysctl.o \
/linux-4.1.27/fs/nfs/
Ddelegation.c480 if (!nfs_sb_active(server->super)) in nfs_client_return_marked_delegations()
485 nfs_sb_deactive(server->super); in nfs_client_return_marked_delegations()
493 nfs_sb_deactive(server->super); in nfs_client_return_marked_delegations()
830 if (!nfs_sb_active(server->super)) in nfs_delegation_reap_unclaimed()
835 nfs_sb_deactive(server->super); in nfs_delegation_reap_unclaimed()
847 nfs_sb_deactive(server->super); in nfs_delegation_reap_unclaimed()
DMakefile8 nfs-y := client.o dir.o file.o getroot.o inode.o super.o \
Dfscache.h35 } super; member
Dfscache.c84 key->key.super.s_flags = sb->s_flags & NFS_MS_MASK; in nfs_fscache_get_super_cookie()
Dnfs4client.c1133 struct inode *inode = d_inode(server->super->s_root); in nfs_probe_destination()
Dnfs4state.c1907 inode = d_inode(server->super->s_root); in nfs4_try_migration()
2026 inode = d_inode(server->super->s_root); in nfs4_handle_lease_moved()
Dsuper.c2574 server->super = s; in nfs_fs_mount_common()
/linux-4.1.27/fs/jfs/
DMakefile7 jfs-y := super.o file.o inode.o namei.o jfs_mount.o jfs_umount.o \
/linux-4.1.27/Documentation/ABI/testing/
Dconfigfs-usb-gadget-ecm10 super speed
Dconfigfs-usb-gadget-ncm10 super speed
Dconfigfs-usb-gadget-subset10 super speed
Dconfigfs-usb-gadget-rndis10 super speed
Dconfigfs-usb-gadget-eem10 super speed
Dsysfs-fs-nilfs264 Show last write time of super block in human-readable
71 Show last write time of super block in seconds.
77 Show current write count of super block.
/linux-4.1.27/fs/gfs2/
DMakefile7 recovery.o rgrp.o super.o sys.o trans.o util.o
/linux-4.1.27/fs/ubifs/
DMakefile3 ubifs-y += shrinker.o journal.o file.o dir.o super.o sb.o io.o
/linux-4.1.27/fs/squashfs/
DMakefile7 squashfs-y += namei.o super.o symlink.o decompressor.o
/linux-4.1.27/fs/ext4/
DMakefile8 ioctl.o namei.o super.o symlink.o hash.o resize.o extents.o \
/linux-4.1.27/fs/exofs/
DKbuild19 exofs-y := inode.o file.o symlink.o namei.o dir.o super.o sys.o
/linux-4.1.27/fs/jffs2/
DMakefile11 jffs2-y += super.o debug.o
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/core/
Dclient.h12 bool super; member
/linux-4.1.27/fs/reiserfs/
DMakefile8 super.o prints.o objectid.o lbalance.o ibalance.o stree.o \
Djournal.c94 static void release_journal_dev(struct super_block *super,
2594 static void release_journal_dev(struct super_block *super, in release_journal_dev() argument
2603 static int journal_init_dev(struct super_block *super, in journal_init_dev() argument
2615 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ? in journal_init_dev()
2616 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev; in journal_init_dev()
2618 if (bdev_read_only(super->s_bdev)) in journal_init_dev()
2623 if (jdev == super->s_dev) in journal_init_dev()
2631 reiserfs_warning(super, "sh-458", in journal_init_dev()
2635 } else if (jdev != super->s_dev) in journal_init_dev()
2636 set_blocksize(journal->j_dev_bd, super->s_blocksize); in journal_init_dev()
[all …]
/linux-4.1.27/Documentation/sysctl/
Dfs.txt38 - super-max
39 - super-nr
227 super-max & super-nr:
231 can have. You only need to increase super-max if you need to
232 mount more filesystems than the current value in super-max
/linux-4.1.27/fs/ocfs2/
DMakefile37 super.o \
/linux-4.1.27/Documentation/DocBook/
D.filesystems.xml.cmd2 …inux/fs.h fs/dcache.c include/linux/dcache.h fs/inode.c fs/bad_inode.c fs/super.c fs/locks.c fs/lo…
/linux-4.1.27/fs/btrfs/
DKconfig49 writes of the super block). The goal is to verify that the
60 to verify the integrity of (super)-block write requests
DMakefile4 btrfs-y += super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \
Dtransaction.c1534 struct btrfs_super_block *super; in update_super_roots() local
1536 super = root->fs_info->super_copy; in update_super_roots()
1539 super->chunk_root = root_item->bytenr; in update_super_roots()
1540 super->chunk_root_generation = root_item->generation; in update_super_roots()
1541 super->chunk_root_level = root_item->level; in update_super_roots()
1544 super->root = root_item->bytenr; in update_super_roots()
1545 super->generation = root_item->generation; in update_super_roots()
1546 super->root_level = root_item->level; in update_super_roots()
1548 super->cache_generation = root_item->generation; in update_super_roots()
1550 super->uuid_tree_generation = root_item->generation; in update_super_roots()
Ddisk-io.c2034 struct btrfs_super_block *super, in next_root_backup() argument
2041 u64 gen = btrfs_super_generation(super); in next_root_backup()
2059 root_backup = super->super_roots + newest; in next_root_backup()
2061 btrfs_set_super_generation(super, in next_root_backup()
2063 btrfs_set_super_root(super, btrfs_backup_tree_root(root_backup)); in next_root_backup()
2064 btrfs_set_super_root_level(super, in next_root_backup()
2066 btrfs_set_super_bytes_used(super, btrfs_backup_bytes_used(root_backup)); in next_root_backup()
2072 btrfs_set_super_total_bytes(super, btrfs_backup_total_bytes(root_backup)); in next_root_backup()
2073 btrfs_set_super_num_devices(super, btrfs_backup_num_devices(root_backup)); in next_root_backup()
3163 struct btrfs_super_block *super; in btrfs_read_dev_super() local
[all …]
/linux-4.1.27/Documentation/filesystems/
Dsysv-fs.txt42 * General layout: all have one boot block, one super block and
45 all the block numbers (including the super block) are offset by one track.
74 There is a cache of a certain number of free inodes in the super-block.
Dgfs2-glocks.txt123 super block and those relating to an individual glock. The
124 super block stats are done on a per cpu basis in order to
128 In the case of both the super block and glock statistics,
129 the same information is gathered in each case. The super
Dnilfs2.txt182 for the super block (SB) and segment #0. A segment is the container
184 blocks, and an optional super root block (SR):
248 The super root block is inserted for every checkpoints. It includes
Dautofs4-mount-control.txt14 autofs specific information stored in the super block. The operations
109 in the mount super block. So the use of a file handle needs to be
374 number of the mount and field arg2 to the relevant super block magic
384 point and and also returns the super magic of the covering mount if there
391 root of a mount 1 is returned along with the super magic of the mount
Domfs.txt42 group consists of super block information, file metadata, directory structures,
Dfuse.txt232 other users' and the super user's processes
235 other users' or the super user's processes
Dext2.txt208 for a particular user (normally the super-user). This is intended to
Dproc.txt1651 (11) super options: per super block options
/linux-4.1.27/drivers/net/hippi/
DKconfig13 connect to super computers. If you are connected to a HIPPI network
/linux-4.1.27/include/linux/
Dnfs_fs_sb.h157 struct super_block *super; /* VFS super block */ member
Dfs.h2000 extern int freeze_super(struct super_block *super);
2001 extern int thaw_super(struct super_block *super);
/linux-4.1.27/Documentation/x86/
Dentry_64.txt88 But if we are in an NMI/MCE/DEBUG/whatever super-atomic entry context,
93 Therefore, super-atomic entries (except NMI, which is handled separately)
/linux-4.1.27/arch/unicore32/mm/
Dproc-macros.S122 .word 0xffc00000, 980f @ super page
/linux-4.1.27/fs/
Dblock_dev.c1657 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super; in blkdev_releasepage() local
1659 if (super && super->s_op->bdev_try_to_free_page) in blkdev_releasepage()
1660 return super->s_op->bdev_try_to_free_page(super, page, wait); in blkdev_releasepage()
DMakefile8 obj-y := open.o read_write.o file_table.o super.o \
/linux-4.1.27/net/bluetooth/
Dl2cap_core.c913 control->super = (enh & L2CAP_CTRL_SUPERVISE) >> L2CAP_CTRL_SUPER_SHIFT; in __unpack_enhanced_control()
924 control->super = 0; in __unpack_enhanced_control()
937 control->super = (ext & L2CAP_EXT_CTRL_SUPERVISE) >> L2CAP_EXT_CTRL_SUPER_SHIFT; in __unpack_extended_control()
948 control->super = 0; in __unpack_extended_control()
975 packed |= control->super << L2CAP_EXT_CTRL_SUPER_SHIFT; in __pack_extended_control()
994 packed |= control->super << L2CAP_CTRL_SUPER_SHIFT; in __pack_enhanced_control()
1076 if (control->super == L2CAP_SUPER_RR) in l2cap_send_sframe()
1078 else if (control->super == L2CAP_SUPER_RNR) in l2cap_send_sframe()
1081 if (control->super != L2CAP_SUPER_SREJ) { in l2cap_send_sframe()
1087 control->final, control->poll, control->super); in l2cap_send_sframe()
[all …]
/linux-4.1.27/Documentation/usb/
Dgadget-testing.txt67 qmult - queue length multiplier for high and super speed
100 qmult - queue length multiplier for high and super speed
133 qmult - queue length multiplier for high and super speed
391 qmult - queue length multiplier for high and super speed
515 qmult - queue length multiplier for high and super speed
668 streaming_maxburst - bMaxBurst for super speed companion descriptor
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/core/
Dioctl.c505 client->super = supervisor; in nvkm_ioctl()
524 client->super = false; in nvkm_ioctl()
/linux-4.1.27/include/net/bluetooth/
Dbluetooth.h268 super:2; member
/linux-4.1.27/Documentation/video4linux/
Duvcvideo.txt88 UVCIOC_CTRL_ADD and UVCIOC_CTRL_MAP ioctls require super user permissions.
132 Insufficient privileges (super user privileges are required).
/linux-4.1.27/drivers/usb/gadget/udc/
DKconfig227 MARVELL PXA2128 Processor series include a super speed USB3.0 device
228 controller, which support super speed USB peripheral.
312 supports full, high speed USB 2.0 and super speed USB 3.0
/linux-4.1.27/drivers/gpu/drm/msm/
DNOTES70 (ie. like DT super-node.. but I don't have any snapdragon hw yet that
/linux-4.1.27/drivers/usb/gadget/function/
Df_fs.c2739 const int super = gadget_is_superspeed(func->gadget) && in _ffs_func_bind() local
2752 super ? ffs->ss_descs_count + 1 : 0); in _ffs_func_bind()
2772 if (unlikely(!(full | high | super))) in _ffs_func_bind()
2837 if (likely(super)) { in _ffs_func_bind()
2858 (super ? ffs->ss_descs_count : 0), in _ffs_func_bind()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/device/
Dbase.c307 if (client->super)
/linux-4.1.27/arch/tile/include/hv/
Dhypervisor.h2339 _HV_BIT(super, SUPER) in _HV_BIT()
/linux-4.1.27/Documentation/hwmon/
Dnct677543 and compatible super I/O chips.
Dw83627ehf50 (NCT6775F), and NCT6776F super I/O chips. We will refer to them collectively
/linux-4.1.27/drivers/net/ethernet/ti/
Dcpsw_ale.c91 DEFINE_ALE_FIELD(super, 65, 1)
/linux-4.1.27/Documentation/networking/
DPLIP.txt3 Donald Becker (becker@super.org)
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/
Docteon_68xx.dts6 * use. Because of this, it contains a super-set of the available
Docteon_3xxx.dts6 * use. Because of this, it contains a super-set of the available
/linux-4.1.27/Documentation/vm/
Dslub.txt133 super large order pages to fit slub_min_objects of a slab cache with
/linux-4.1.27/tools/power/cpupower/po/
Dit.po625 "- Do you have proper administration rights? (super-user?)\n"
636 "- Hai i necessari diritti di amministrazione? (super-user?)\n"
Dpt.po626 "- Do you have proper administration rights? (super-user?)\n"
636 "- Você tem direitos administrativos necessários? (super-usuário?)\n"
Dde.po630 "- Do you have proper administration rights? (super-user?)\n"
Dcs.po619 "- Do you have proper administration rights? (super-user?)\n"
Dfr.po616 "- Do you have proper administration rights? (super-user?)\n"
/linux-4.1.27/drivers/net/irda/
DKconfig291 W83977AF super-io chipset. This driver should be used for the IrDA
/linux-4.1.27/arch/arm/boot/dts/
Ddra7.dtsi1297 maximum-speed = "super-speed";
/linux-4.1.27/drivers/gpio/
DKconfig225 Say yes here to support GPIO functionality of IT8761E super I/O chip.
/linux-4.1.27/Documentation/kbuild/
Dmakefiles.txt213 namei.o super.o symlink.o
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt4060 If you want to be super-helpful, read ``Diagnosing Problems'' and