Home
last modified time | relevance | path

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

/Linux-v4.19/fs/hfs/
Dsuper.c230 static int parse_options(char *options, struct hfs_sb_info *hsb) in parse_options() argument
237 hsb->s_uid = current_uid(); in parse_options()
238 hsb->s_gid = current_gid(); in parse_options()
239 hsb->s_file_umask = 0133; in parse_options()
240 hsb->s_dir_umask = 0022; in parse_options()
241 hsb->s_type = hsb->s_creator = cpu_to_be32(0x3f3f3f3f); /* == '????' */ in parse_options()
242 hsb->s_quiet = 0; in parse_options()
243 hsb->part = -1; in parse_options()
244 hsb->session = -1; in parse_options()
260 hsb->s_uid = make_kuid(current_user_ns(), (uid_t)tmp); in parse_options()
[all …]
Dinode.c316 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_read_inode() local
326 inode->i_uid = hsb->s_uid; in hfs_read_inode()
327 inode->i_gid = hsb->s_gid; in hfs_read_inode()
351 inode->i_mode &= ~hsb->s_file_umask; in hfs_read_inode()
363 inode->i_mode = S_IFDIR | (S_IRWXUGO & ~hsb->s_dir_umask); in hfs_read_inode()
607 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_inode_setattr() local
616 (!uid_eq(attr->ia_uid, hsb->s_uid))) || in hfs_inode_setattr()
618 (!gid_eq(attr->ia_gid, hsb->s_gid))) || in hfs_inode_setattr()
623 return hsb->s_quiet ? 0 : error; in hfs_inode_setattr()
632 attr->ia_mode &= S_ISDIR(inode->i_mode) ? ~hsb->s_dir_umask: ~hsb->s_file_umask; in hfs_inode_setattr()
/Linux-v4.19/Documentation/leds/
Dleds-blinkm.txt48 b) Sysfs group to control rgb, fade, hsb, scripts ...
/Linux-v4.19/arch/arm/boot/dts/
Dvexpress-v2p-ca5s.dts254 site2: hsb@40000000 {
Dvexpress-v2p-ca15-tc1.dts284 site2: hsb@40000000 {
Dvexpress-v2p-ca9.dts363 site2: hsb@e0000000 {
Dvexpress-v2p-ca15_a7.dts647 site2: hsb@40000000 {
/Linux-v4.19/drivers/video/fbdev/
Dimsttfb.c309 __u16 hes, heb, hsb, ht, ves, veb, vsb, vt, vil; member
507 init->hsb = init->heb + (xres >> 3); in compute_imstt_regvals_ibm()
508 init->ht = init->hsb + htp; in compute_imstt_regvals_ibm()
705 write_reg_le32(par->dc_regs, HSB, init->hsb); in set_imstt_regvals()
/Linux-v4.19/drivers/media/dvb-frontends/
Dstv0900_core.c336 u32 lsb, msb, hsb, err_val; in stv0900_get_err_count() local
341 hsb = stv0900_get_bits(intp, ERR_CNT12); in stv0900_get_err_count()
346 hsb = stv0900_get_bits(intp, ERR_CNT22); in stv0900_get_err_count()
352 err_val = (hsb << 16) + (msb << 8) + (lsb); in stv0900_get_err_count()