Home
last modified time | relevance | path

Searched refs:new_mask (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/arch/sparc/kernel/
Dsun4c_irq.c69 unsigned char current_mask, new_mask; in sun4c_disable_irq() local
76 new_mask = ((current_mask) & (~(SUN4C_INT_E1))); in sun4c_disable_irq()
79 new_mask = ((current_mask) & (~(SUN4C_INT_E8))); in sun4c_disable_irq()
82 new_mask = ((current_mask) & (~(SUN4C_INT_E10))); in sun4c_disable_irq()
85 new_mask = ((current_mask) & (~(SUN4C_INT_E14))); in sun4c_disable_irq()
91 *interrupt_enable = new_mask; in sun4c_disable_irq()
98 unsigned char current_mask, new_mask; in sun4c_enable_irq() local
105 new_mask = ((current_mask) | SUN4C_INT_E1); in sun4c_enable_irq()
108 new_mask = ((current_mask) | SUN4C_INT_E8); in sun4c_enable_irq()
111 new_mask = ((current_mask) | SUN4C_INT_E10); in sun4c_enable_irq()
[all …]
/linux-2.4.37.9/fs/
Ddnotify.c33 unsigned long new_mask; in redo_inode_mask() local
36 new_mask = 0; in redo_inode_mask()
38 new_mask |= dn->dn_mask & ~DN_MULTISHOT; in redo_inode_mask()
39 inode->i_dnotify_mask = new_mask; in redo_inode_mask()
/linux-2.4.37.9/arch/sparc64/kernel/
Dirq.c1235 unsigned long new_mask = 0UL; in hw_to_logical() local
1242 new_mask |= (1UL << logical); in hw_to_logical()
1246 return new_mask; in hw_to_logical()
1251 unsigned long new_mask = 0UL; in logical_to_hw() local
1258 new_mask |= (1UL << hw); in logical_to_hw()
1262 return new_mask; in logical_to_hw()
/linux-2.4.37.9/arch/mips/au1000/common/
Dirq.c241 unsigned long flags, new_mask; in restore_local_and_enable() local
253 new_mask = au_readl(IC1_MASKSET); in restore_local_and_enable()
255 new_mask = au_readl(IC0_MASKSET); in restore_local_and_enable()
/linux-2.4.37.9/kernel/
Dsched.c863 void set_cpus_allowed(struct task_struct *p, unsigned long new_mask) in set_cpus_allowed() argument
865 new_mask &= cpu_online_map; in set_cpus_allowed()
866 BUG_ON(!new_mask); in set_cpus_allowed()
868 p->cpus_allowed = new_mask; in set_cpus_allowed()
/linux-2.4.37.9/include/linux/
Dsched.h157 extern void set_cpus_allowed(struct task_struct *p, unsigned long new_mask);
159 # define set_cpus_allowed(p, new_mask) do { } while (0) argument