/kernel/linux/linux-5.10/kernel/trace/ |
H A D | trace_functions_graph.c | 19 /* When set, irq functions will be ignored */ 166 * Stop here if tracing_threshold is set. We only write function return in trace_graph_entry() 770 * - funcgraph-interrupts option is set 817 * - funcgraph-interrupts option is set 1253 func_graph_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set) in func_graph_set_flag() argument 1256 ftrace_graph_skip_irqs = !set; in func_graph_set_flag() 1259 ftrace_graph_sleep_time_control(set); in func_graph_set_flag() 1262 ftrace_graph_graph_time_control(set); in func_graph_set_flag()
|
/kernel/linux/linux-5.10/fs/ |
H A D | super.c | 439 * rearrange the set of dentries belonging to this super_block, nor may it 498 * @set: Setup callback 507 * initialisation will be performed (s_type, s_fs_info and s_id will be set and 508 * the set() callback will be invoked), the superblock will be published and it 514 int (*set)(struct super_block *, struct fs_context *)) in sget_fc() 538 err = set(s, fc); in sget_fc() 573 * @set: setup callback 579 int (*set)(struct super_block *,void *), in sget() 620 err = set(s, data); in sget() 958 * We set s_readonly_remoun in reconfigure_super() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/rcar-du/ |
H A D | rcar_du_crtc.c | 57 static void rcar_du_crtc_set(struct rcar_du_crtc *rcrtc, u32 reg, u32 set) in rcar_du_crtc_set() argument 62 rcar_du_read(rcdu, rcrtc->mmio_offset + reg) | set); in rcar_du_crtc_set() 65 void rcar_du_crtc_dsysr_clr_set(struct rcar_du_crtc *rcrtc, u32 clr, u32 set) in rcar_du_crtc_dsysr_clr_set() argument 69 rcrtc->dsysr = (rcrtc->dsysr & ~clr) | set; in rcar_du_crtc_dsysr_clr_set() 790 * If a mode set is in progress we can be called with the CRTC disabled. in rcar_du_crtc_atomic_begin() 797 * If a mode set is not in progress the CRTC is enabled, and the in rcar_du_crtc_atomic_begin() 1085 /* Perform an atomic commit to set the CRC source. */ in rcar_du_crtc_set_crc_source()
|
/kernel/linux/linux-6.6/drivers/media/i2c/ |
H A D | mt9p031.c | 163 u16 set) in mt9p031_set_output_control() 166 u16 value = (mt9p031->output_control & ~clear) | set; in mt9p031_set_output_control() 177 static int mt9p031_set_mode2(struct mt9p031 *mt9p031, u16 clear, u16 set) in mt9p031_set_mode2() argument 180 u16 value = (mt9p031->mode2 & ~clear) | set; in mt9p031_set_mode2() 476 /* enable restart + keep pause restart set */ in mt9p031_s_stream() 162 mt9p031_set_output_control(struct mt9p031 *mt9p031, u16 clear, u16 set) mt9p031_set_output_control() argument
|
H A D | mt9t112.c | 209 u16 command, u16 mask, u16 set) in __mt9t112_reg_mask_set() 217 val |= set & mask; in __mt9t112_reg_mask_set() 247 u16 command, u16 mask, u16 set) in __mt9t112_mcu_mask_set() 255 val |= set & mask; in __mt9t112_mcu_mask_set() 807 * So, set small size here to solve this problem. in mt9t112_s_stream() 208 __mt9t112_reg_mask_set(const struct i2c_client *client, u16 command, u16 mask, u16 set) __mt9t112_reg_mask_set() argument 246 __mt9t112_mcu_mask_set(const struct i2c_client *client, u16 command, u16 mask, u16 set) __mt9t112_mcu_mask_set() argument
|
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/iavf/ |
H A D | iavf_common.c | 349 * @pf_lut: for PF table set true, for VSI table set false 352 * @set: set true to set the table, false to get the table 354 * Internal function to get or set RSS look up table 359 bool set) in iavf_aq_get_set_rss_lut() 366 if (set) in iavf_aq_get_set_rss_lut() 403 * @pf_lut: for PF table set true, for VSI table set fals 356 iavf_aq_get_set_rss_lut(struct iavf_hw *hw, u16 vsi_id, bool pf_lut, u8 *lut, u16 lut_size, bool set) iavf_aq_get_set_rss_lut() argument 425 iavf_aq_get_set_rss_key(struct iavf_hw *hw, u16 vsi_id, struct iavf_aqc_get_set_rss_key_data *key, bool set) iavf_aq_get_set_rss_key() argument [all...] |
/kernel/linux/linux-6.6/fs/f2fs/ |
H A D | namei.c | 74 bool hot, bool set) in f2fs_update_extension_list() 83 if (set) { in f2fs_update_extension_list() 105 if (set) in f2fs_update_extension_list() 119 if (!set) in f2fs_update_extension_list() 313 /* Should enable inline_data after compression set */ in f2fs_new_inode() 73 f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name, bool hot, bool set) f2fs_update_extension_list() argument
|
/kernel/linux/linux-6.6/fs/ |
H A D | xattr.c | 87 * @inode: the inode on which to set an xattr 90 * set or remove an extended attribute on a read-only filesystem or on an 197 if (!handler->set) in __vfs_setxattr() 201 return handler->set(handler, idmap, dentry, inode, name, value, in __vfs_setxattr() 212 * @name: xattr name to set 213 * @value: value to set @name to 263 * __vfs_setxattr_locked - set an extended attribute while holding the inode 268 * @name: xattr name to set 269 * @value: value to set @name to 517 if (!handler->set) in __vfs_removexattr() [all...] |
/kernel/linux/linux-6.6/drivers/staging/sm750fb/ |
H A D | sm750.c | 122 if (fbcursor->set & FB_CUR_SETSIZE) in lynxfb_ops_cursor() 127 if (fbcursor->set & FB_CUR_SETPOS) in lynxfb_ops_cursor() 132 if (fbcursor->set & FB_CUR_SETCMAP) { in lynxfb_ops_cursor() 147 if (fbcursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETIMAGE)) { in lynxfb_ops_cursor() 176 * be set, seems we can put them together in some place in lynxfb_ops_fillrect() 214 * be set, seems we can put them together in some place in lynxfb_ops_copyarea() 248 * be set, seems we can put them together in some place in lynxfb_ops_imageblit() 383 * var->red,green,blue,transp are need to be set by driver in lynxfb_ops_set_par() 384 * and these data should be set before setcolreg routine in lynxfb_ops_set_par() 713 /* set inde in lynxfb_set_fbinfo() [all...] |
/kernel/linux/linux-6.6/drivers/soc/fsl/qe/ |
H A D | qmc.c | 231 static inline void qmc_setbits16(void __iomem *addr, u16 set) in qmc_setbits16() argument 233 qmc_write16(addr, qmc_read16(addr) | set); in qmc_setbits16() 251 static inline void qmc_setbits32(void __iomem *addr, u32 set) in qmc_setbits32() argument 253 qmc_write32(addr, qmc_read32(addr) | set); in qmc_setbits32() 1102 /* Init Rx BDs and set Wrap bit on last descriptor */ in qmc_setup_chan() 1112 /* Init Tx BDs and set Wrap bit on last descriptor */ in qmc_setup_chan() 1384 /* Disable and clear interrupts, set the irq handler */ in qmc_probe()
|
/kernel/linux/linux-6.6/drivers/usb/gadget/legacy/ |
H A D | raw_gadget.c | 928 unsigned long value, bool set, bool halt) in raw_ioctl_ep_set_clear_halt_wedge() 973 if (set && halt) { in raw_ioctl_ep_set_clear_halt_wedge() 978 } else if (!set && halt) { in raw_ioctl_ep_set_clear_halt_wedge() 983 } else if (set && !halt) { in raw_ioctl_ep_set_clear_halt_wedge() 927 raw_ioctl_ep_set_clear_halt_wedge(struct raw_dev *dev, unsigned long value, bool set, bool halt) raw_ioctl_ep_set_clear_halt_wedge() argument
|
/kernel/linux/linux-6.6/drivers/usb/serial/ |
H A D | mos7720.c | 935 mos7720_port->shadowMCR = UART_MCR_OUT2; /* Must set to enable ints! */ in mos7720_open() 1355 * This routine is called to set the UART on the device to match 1439 /* set up the MCR register and send it to the mos7720 */ in change_port_settings() 1446 /* To set hardware flow control to the specified * in change_port_settings() 1579 unsigned int set, unsigned int clear) in mos7720_tiocmset() 1587 if (set & TIOCM_RTS) in mos7720_tiocmset() 1589 if (set & TIOCM_DTR) in mos7720_tiocmset() 1591 if (set & TIOCM_LOOP) in mos7720_tiocmset() 1578 mos7720_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) mos7720_tiocmset() argument
|
H A D | cypress_m8.c | 97 int cmd_ctrl; /* always set this to 1 before issuing a command */ 132 unsigned int set, unsigned int clear); 290 /* This function can either set or retrieve the current serial line settings */ 321 dev_dbg(dev, "%s - New baud rate set to %d\n", in cypress_serial_control() 836 unsigned int set, unsigned int clear) in cypress_tiocmset() 843 if (set & TIOCM_RTS) in cypress_tiocmset() 845 if (set & TIOCM_DTR) in cypress_tiocmset() 879 /* set number of data bits, parity, stop bits */ in cypress_set_termios() 914 * working if it returns what we just set */ in cypress_set_termios() 951 /* if necessary, set line in cypress_set_termios() 835 cypress_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) cypress_tiocmset() argument [all...] |
H A D | iuu_phoenix.c | 114 unsigned int set, unsigned int clear) in iuu_tiocmset() 122 __func__, set, clear); in iuu_tiocmset() 126 if ((set & TIOCM_RTS) && !(priv->tiostatus == TIOCM_RTS)) { in iuu_tiocmset() 130 if (set & TIOCM_RTS) in iuu_tiocmset() 917 /* set it */ in iuu_set_termios() 922 /* set the termios value to the real one, so the user now what has in iuu_set_termios() 1017 /* set the cardin cardout signals */ in iuu_open() 113 iuu_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear) iuu_tiocmset() argument
|
/kernel/linux/linux-6.6/drivers/crypto/hisilicon/sec2/ |
H A D | sec_main.c | 324 .set = sec_pf_q_num_set, 353 .set = sec_ctx_q_num_set, 361 .set = vfs_num_set, 405 .set = uacce_mode_set, 1151 pci_err(qm->pdev, "Failed to set sec algs!\n"); in sec_qm_init()
|
/kernel/linux/linux-6.6/drivers/crypto/hisilicon/zip/ |
H A D | zip_main.c | 394 .set = perf_mode_set, 408 .set = uacce_mode_set, 429 .set = pf_q_num_set, 438 .set = vfs_num_set, 489 pci_err(qm->pdev, "failed to set perf mode\n"); in hisi_zip_set_high_perf() 1246 pci_err(qm->pdev, "Failed to set zip algs!\n"); in hisi_zip_qm_init()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/renesas/rcar-du/ |
H A D | rcar_du_crtc.c | 55 static void rcar_du_crtc_set(struct rcar_du_crtc *rcrtc, u32 reg, u32 set) in rcar_du_crtc_set() argument 60 rcar_du_read(rcdu, rcrtc->mmio_offset + reg) | set); in rcar_du_crtc_set() 63 void rcar_du_crtc_dsysr_clr_set(struct rcar_du_crtc *rcrtc, u32 clr, u32 set) in rcar_du_crtc_dsysr_clr_set() argument 67 rcrtc->dsysr = (rcrtc->dsysr & ~clr) | set; in rcar_du_crtc_dsysr_clr_set() 821 * If a mode set is in progress we can be called with the CRTC disabled. in rcar_du_crtc_atomic_begin() 828 * If a mode set is not in progress the CRTC is enabled, and the in rcar_du_crtc_atomic_begin() 1116 /* Perform an atomic commit to set the CRC source. */ in rcar_du_crtc_set_crc_source()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/qxl/ |
H A D | qxl_display.c | 513 cmd->u.set.position.x = plane_state->crtc_x + fb->hot_x; in qxl_primary_apply_cursor() 514 cmd->u.set.position.y = plane_state->crtc_y + fb->hot_y; in qxl_primary_apply_cursor() 516 cmd->u.set.shape = qxl_bo_physical_address(qdev, qcrtc->cursor_bo, 0); in qxl_primary_apply_cursor() 518 cmd->u.set.visible = 1; in qxl_primary_apply_cursor()
|
/kernel/linux/linux-6.6/tools/testing/selftests/memfd/ |
H A D | memfd_test.c | 755 sigset_t set; in idle_thread_fn() local 759 sigemptyset(&set); in idle_thread_fn() 760 sigaddset(&set, SIGTERM); in idle_thread_fn() 761 sigwait(&set, &sig); in idle_thread_fn() 854 /* verify EXEC and NOEXEC_SEAL can't both be set */ in test_create()
|
/kernel/linux/linux-6.6/security/keys/ |
H A D | keyctl.c | 375 * Keys with KEY_FLAG_KEEP set should not be revoked. 416 * Keys with KEY_FLAG_KEEP set should not be invalidated. 465 * KEY_FLAG_KEEP set for this to work. If successful, 0 will be returned. 548 * Keys or keyrings with KEY_FLAG_KEEP set should not be unlinked. 990 /* only the sysadmin can set the key's GID to a group other in keyctl_chown_key() 1167 * The caller must have the appropriate instantiation permit set for this to 1244 * The caller must have the appropriate instantiation permit set for this to 1274 * The caller must have the appropriate instantiation permit set for this to 1304 * The caller must have the appropriate instantiation permit set for this to 1324 * The caller must have the appropriate instantiation permit set fo [all...] |
/kernel/linux/linux-6.6/drivers/scsi/mpt3sas/ |
H A D | mpt3sas_base.h | 1170 * @fw_event_cleanup: set to one while cleaning up the fw events 1179 * @wait_for_discovery_to_complete: flag set at driver load time when 1181 * @is_driver_loading: flag set at driver load time 1182 * @port_enable_failed: flag set when port enable has failed 1183 * @start_scan: flag set from scan_start callback, cleared from _mpt3sas_fw_work 1970 struct SL_WH_MASTER_TRIGGER_T *master_tg, bool set); 1973 struct SL_WH_EVENT_TRIGGERS_T *event_tg, bool set); 1976 struct SL_WH_SCSI_TRIGGERS_T *scsi_tg, bool set); 1979 struct SL_WH_MPI_TRIGGERS_T *mpi_tg, bool set);
|
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_functions_graph.c | 19 /* When set, irq functions will be ignored */ 171 * Stop here if tracing_threshold is set. We only write function return in trace_graph_entry() 832 * - funcgraph-interrupts option is set 879 * - funcgraph-interrupts option is set 1324 func_graph_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set) in func_graph_set_flag() argument 1327 ftrace_graph_skip_irqs = !set; in func_graph_set_flag() 1330 ftrace_graph_sleep_time_control(set); in func_graph_set_flag() 1333 ftrace_graph_graph_time_control(set); in func_graph_set_flag()
|
/kernel/linux/linux-6.6/tools/arch/arm64/include/asm/ |
H A D | sysreg.h | 1076 #define CPACR_EL1_ZEN_EL0EN (BIT(17)) /* enable EL0 access, if EL1EN set */ 1270 * set mask are set. Other bits are left as-is. 1272 #define sysreg_clear_set(sysreg, clear, set) do { \ 1274 u64 __scs_new = (__scs_val & ~(u64)(clear)) | (set); \ 1279 #define sysreg_clear_set_s(sysreg, clear, set) do { \ 1281 u64 __scs_new = (__scs_val & ~(u64)(clear)) | (set); \
|
/kernel/linux/linux-5.10/drivers/bcma/ |
H A D | driver_gpio.c | 181 chip->set = bcma_gpio_set_value; in bcma_gpio_init()
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-xra1403.c | 113 dev_err(chip->parent, "Failed to set pin: %d, ret: %d\n", in xra1403_set() 170 xra->chip.set = xra1403_set; in xra1403_probe()
|