Home
last modified time | relevance | path

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

/linux-4.1.27/fs/hfs/
Dsuper.c229 static int parse_options(char *options, struct hfs_sb_info *hsb) in parse_options() argument
236 hsb->s_uid = current_uid(); in parse_options()
237 hsb->s_gid = current_gid(); in parse_options()
238 hsb->s_file_umask = 0133; in parse_options()
239 hsb->s_dir_umask = 0022; in parse_options()
240 hsb->s_type = hsb->s_creator = cpu_to_be32(0x3f3f3f3f); /* == '????' */ in parse_options()
241 hsb->s_quiet = 0; in parse_options()
242 hsb->part = -1; in parse_options()
243 hsb->session = -1; in parse_options()
259 hsb->s_uid = make_kuid(current_user_ns(), (uid_t)tmp); in parse_options()
[all …]
Dinode.c314 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_read_inode() local
323 inode->i_uid = hsb->s_uid; in hfs_read_inode()
324 inode->i_gid = hsb->s_gid; in hfs_read_inode()
348 inode->i_mode &= ~hsb->s_file_umask; in hfs_read_inode()
360 inode->i_mode = S_IFDIR | (S_IRWXUGO & ~hsb->s_dir_umask); in hfs_read_inode()
604 struct hfs_sb_info *hsb = HFS_SB(inode->i_sb); in hfs_inode_setattr() local
613 (!uid_eq(attr->ia_uid, hsb->s_uid))) || in hfs_inode_setattr()
615 (!gid_eq(attr->ia_gid, hsb->s_gid))) || in hfs_inode_setattr()
620 return hsb->s_quiet ? 0 : error; in hfs_inode_setattr()
629 attr->ia_mode &= S_ISDIR(inode->i_mode) ? ~hsb->s_dir_umask: ~hsb->s_file_umask; in hfs_inode_setattr()
/linux-4.1.27/include/linux/
Dhugetlb.h344 struct hugetlbfs_sb_info *hsb; in hstate_inode() local
345 hsb = HUGETLBFS_SB(i->i_sb); in hstate_inode()
346 return hsb->hstate; in hstate_inode()
/linux-4.1.27/Documentation/leds/
Dleds-blinkm.txt48 b) Sysfs group to control rgb, fade, hsb, scripts ...
/linux-4.1.27/arch/avr32/mach-at32ap/
Dat32ap700x.c618 DEV_CLK(hclk, dw_dmac0, hsb, 10);
717 DEV_CLK(mck, smc0, hsb, 0);
723 DEV_CLK(hclk, pdc, hsb, 4);
1079 DEV_CLK(hclk, macb0, hsb, 8);
1088 DEV_CLK(hclk, macb1, hsb, 9);
1474 DEV_CLK(hclk, atmel_lcdfb0, hsb, 7);
/linux-4.1.27/drivers/video/fbdev/
Dimsttfb.c310 __u16 hes, heb, hsb, ht, ves, veb, vsb, vt, vil; member
508 init->hsb = init->heb + (xres >> 3); in compute_imstt_regvals_ibm()
509 init->ht = init->hsb + htp; in compute_imstt_regvals_ibm()
706 write_reg_le32(par->dc_regs, HSB, init->hsb); in set_imstt_regvals()
/linux-4.1.27/drivers/media/dvb-frontends/
Dstv0900_core.c340 u32 lsb, msb, hsb, err_val; in stv0900_get_err_count() local
345 hsb = stv0900_get_bits(intp, ERR_CNT12); in stv0900_get_err_count()
350 hsb = stv0900_get_bits(intp, ERR_CNT22); in stv0900_get_err_count()
356 err_val = (hsb << 16) + (msb << 8) + (lsb); in stv0900_get_err_count()