Home
last modified time | relevance | path

Searched refs:hsb (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.10/fs/hfs/
Dsuper.c223 static int parse_options(char *options, struct hfs_sb_info *hsb) in parse_options() argument
230 hsb->s_uid = current_uid(); in parse_options()
231 hsb->s_gid = current_gid(); in parse_options()
232 hsb->s_file_umask = 0133; in parse_options()
233 hsb->s_dir_umask = 0022; in parse_options()
234 hsb->s_type = hsb->s_creator = cpu_to_be32(0x3f3f3f3f); /* == '????' */ in parse_options()
235 hsb->s_quiet = 0; in parse_options()
236 hsb->part = -1; in parse_options()
237 hsb->session = -1; in parse_options()
253 hsb->s_uid = make_kuid(current_user_ns(), (uid_t)tmp); in parse_options()
[all …]
Dinode.c317 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_read_inode() local
327 inode->i_uid = hsb->s_uid; in hfs_read_inode()
328 inode->i_gid = hsb->s_gid; in hfs_read_inode()
352 inode->i_mode &= ~hsb->s_file_umask; in hfs_read_inode()
364 inode->i_mode = S_IFDIR | (S_IRWXUGO & ~hsb->s_dir_umask); in hfs_read_inode()
608 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_inode_setattr() local
617 (!uid_eq(attr->ia_uid, hsb->s_uid))) || in hfs_inode_setattr()
619 (!gid_eq(attr->ia_gid, hsb->s_gid))) || in hfs_inode_setattr()
624 return hsb->s_quiet ? 0 : error; in hfs_inode_setattr()
633 attr->ia_mode &= S_ISDIR(inode->i_mode) ? ~hsb->s_dir_umask: ~hsb->s_file_umask; in hfs_inode_setattr()
/Linux-v5.10/Documentation/leds/
Dleds-blinkm.rst53 b) Sysfs group to control rgb, fade, hsb, scripts ...
/Linux-v5.10/arch/arm/boot/dts/
Dvexpress-v2p-ca5s.dts268 site2: hsb@40000000 {
Dvexpress-v2p-ca15-tc1.dts298 site2: hsb@40000000 {
Dvexpress-v2p-ca9.dts356 site2: hsb@e0000000 {
Dvexpress-v2p-ca15_a7.dts670 site2: hsb@40000000 {
/Linux-v5.10/drivers/video/fbdev/
Dimsttfb.c308 __u16 hes, heb, hsb, ht, ves, veb, vsb, vt, vil; member
505 init->hsb = init->heb + (xres >> 3); in compute_imstt_regvals_ibm()
506 init->ht = init->hsb + htp; in compute_imstt_regvals_ibm()
703 write_reg_le32(par->dc_regs, HSB, init->hsb); in set_imstt_regvals()
/Linux-v5.10/drivers/media/dvb-frontends/
Dstv0900_core.c326 u32 lsb, msb, hsb, err_val; in stv0900_get_err_count() local
331 hsb = stv0900_get_bits(intp, ERR_CNT12); in stv0900_get_err_count()
336 hsb = stv0900_get_bits(intp, ERR_CNT22); in stv0900_get_err_count()
342 err_val = (hsb << 16) + (msb << 8) + (lsb); in stv0900_get_err_count()