Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/linux-2.4.37.9/fs/ncpfs/
Dioctl.c380 struct ncp_objectname_ioctl user; in ncp_ioctl() local
383 if (copy_from_user(&user, in ncp_ioctl()
385 sizeof(user))) return -EFAULT; in ncp_ioctl()
386 user.auth_type = server->auth.auth_type; in ncp_ioctl()
387 outl = user.object_name_len; in ncp_ioctl()
388 user.object_name_len = server->auth.object_name_len; in ncp_ioctl()
389 if (outl > user.object_name_len) in ncp_ioctl()
390 outl = user.object_name_len; in ncp_ioctl()
392 if (copy_to_user(user.object_name, in ncp_ioctl()
397 &user, in ncp_ioctl()
[all …]
/linux-2.4.37.9/drivers/char/ipmi/
Dipmi_msghandler.c78 ipmi_user_t user; member
175 ipmi_register_all_cmd_rcvr(ipmi_user_t user) in ipmi_register_all_cmd_rcvr() argument
180 write_lock_irqsave(&(user->intf->users_lock), flags); in ipmi_register_all_cmd_rcvr()
181 write_lock(&(user->intf->cmd_rcvr_lock)); in ipmi_register_all_cmd_rcvr()
182 if ((user->intf->all_cmd_rcvr == NULL) in ipmi_register_all_cmd_rcvr()
183 && (list_empty(&(user->intf->cmd_rcvrs)))) in ipmi_register_all_cmd_rcvr()
185 user->intf->all_cmd_rcvr = user; in ipmi_register_all_cmd_rcvr()
188 write_unlock(&(user->intf->cmd_rcvr_lock)); in ipmi_register_all_cmd_rcvr()
189 write_unlock_irqrestore(&(user->intf->users_lock), flags); in ipmi_register_all_cmd_rcvr()
194 ipmi_unregister_all_cmd_rcvr(ipmi_user_t user) in ipmi_unregister_all_cmd_rcvr() argument
[all …]
Dipmi_devintf.c49 ipmi_user_t user; member
127 &(priv->user)); in ipmi_open()
149 rv = ipmi_destroy_user(priv->user); in ipmi_release()
216 rv = ipmi_request(priv->user, in ipmi_ioctl()
334 rv = ipmi_register_for_cmd(priv->user, val.netfn, val.cmd); in ipmi_ioctl()
347 rv = ipmi_unregister_for_cmd(priv->user, val.netfn, val.cmd); in ipmi_ioctl()
360 rv = ipmi_set_gets_events(priv->user, val); in ipmi_ioctl()
373 ipmi_set_my_address(priv->user, val); in ipmi_ioctl()
382 val = ipmi_get_my_address(priv->user); in ipmi_ioctl()
401 ipmi_set_my_LUN(priv->user, val); in ipmi_ioctl()
[all …]
/linux-2.4.37.9/include/linux/
Dipmi.h183 ipmi_user_t user; member
222 ipmi_user_t *user);
225 int ipmi_destroy_user(ipmi_user_t user);
228 void ipmi_get_version(ipmi_user_t user,
238 void ipmi_set_my_address(ipmi_user_t user,
240 unsigned char ipmi_get_my_address(ipmi_user_t user);
241 void ipmi_set_my_LUN(ipmi_user_t user,
243 unsigned char ipmi_get_my_LUN(ipmi_user_t user);
257 int ipmi_request(ipmi_user_t user,
266 int ipmi_request_with_source(ipmi_user_t user,
[all …]
/linux-2.4.37.9/drivers/pcmcia/
Dds.c111 user_info_t *user; member
245 static int queue_empty(user_info_t *user) in queue_empty() argument
247 return (user->event_head == user->event_tail); in queue_empty()
250 static event_t get_queued_event(user_info_t *user) in get_queued_event() argument
252 user->event_tail = (user->event_tail+1) % MAX_EVENTS; in get_queued_event()
253 return user->event[user->event_tail]; in get_queued_event()
256 static void queue_event(user_info_t *user, event_t event) in queue_event() argument
258 user->event_head = (user->event_head+1) % MAX_EVENTS; in queue_event()
259 if (user->event_head == user->event_tail) in queue_event()
260 user->event_tail = (user->event_tail+1) % MAX_EVENTS; in queue_event()
[all …]
/linux-2.4.37.9/arch/m68k/ifpsp060/
Dos.S57 | Each IO routine checks to see if the memory write/read is to/from user
60 | for user mode applications.
71 | working in user space
80 | a1 - user destination address
82 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
110 | a0 - user source address
113 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
140 | Read a data byte from user memory.
143 | a0 - user source address
144 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
[all …]
/linux-2.4.37.9/arch/sparc64/kernel/
Dsys_sunos32.c970 static inline int sunos_msqid_get(struct msqid_ds32 *user, in sunos_msqid_get() argument
973 if(get_user(kern->msg_perm.key, &user->msg_perm.key) || in sunos_msqid_get()
974 __get_user(kern->msg_perm.uid, &user->msg_perm.uid) || in sunos_msqid_get()
975 __get_user(kern->msg_perm.gid, &user->msg_perm.gid) || in sunos_msqid_get()
976 __get_user(kern->msg_perm.cuid, &user->msg_perm.cuid) || in sunos_msqid_get()
977 __get_user(kern->msg_perm.cgid, &user->msg_perm.cgid) || in sunos_msqid_get()
978 __get_user(kern->msg_stime, &user->msg_stime) || in sunos_msqid_get()
979 __get_user(kern->msg_rtime, &user->msg_rtime) || in sunos_msqid_get()
980 __get_user(kern->msg_ctime, &user->msg_ctime) || in sunos_msqid_get()
981 __get_user(kern->msg_ctime, &user->msg_cbytes) || in sunos_msqid_get()
[all …]
/linux-2.4.37.9/kernel/
Duid16.c30 asmlinkage long sys_chown16(const char * filename, old_uid_t user, old_gid_t group) in sys_chown16() argument
32 return sys_chown(filename, low2highuid(user), low2highgid(group)); in sys_chown16()
35 asmlinkage long sys_lchown16(const char * filename, old_uid_t user, old_gid_t group) in sys_lchown16() argument
37 return sys_lchown(filename, low2highuid(user), low2highgid(group)); in sys_lchown16()
40 asmlinkage long sys_fchown16(unsigned int fd, old_uid_t user, old_gid_t group) in sys_fchown16() argument
42 return sys_fchown(fd, low2highuid(user), low2highgid(group)); in sys_fchown16()
/linux-2.4.37.9/arch/sh64/kernel/
Dptrace.c188 else if ((addr >= offsetof(struct user, fpu)) && in sys_ptrace()
189 (addr < offsetof(struct user, u_fpvalid))) { in sys_ptrace()
190 tmp = get_fpu_long(child, addr - offsetof(struct user, fpu)); in sys_ptrace()
191 } else if (addr == offsetof(struct user, u_fpvalid)) { in sys_ptrace()
234 else if ((addr >= offsetof(struct user, fpu)) && in sys_ptrace()
235 (addr < offsetof(struct user, u_fpvalid))) { in sys_ptrace()
236 ret = put_fpu_long(child, addr - offsetof(struct user, fpu), data); in sys_ptrace()
/linux-2.4.37.9/net/ipv6/netfilter/
Dip6t_limit.c75 user2credits(u_int32_t user) in user2credits() argument
78 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY)) in user2credits()
80 return (user / IP6T_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY; in user2credits()
82 return (user * HZ * CREDITS_PER_JIFFY) / IP6T_LIMIT_SCALE; in user2credits()
/linux-2.4.37.9/net/ipv4/netfilter/
Dipt_limit.c86 user2credits(u_int32_t user) in user2credits() argument
89 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY)) in user2credits()
91 return (user / IPT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY; in user2credits()
93 return (user * HZ * CREDITS_PER_JIFFY) / IPT_LIMIT_SCALE; in user2credits()
Darp_tables.c441 && (strcmp(t->target.u.user.name, in mark_source_chains()
473 if (strcmp(t->target.u.user.name, in mark_source_chains()
539 target = arpt_find_target_lock(t->u.user.name, &ret, &arpt_mutex); in check_entry()
541 duprintf("check_entry: `%s' not found\n", t->u.user.name); in check_entry()
819 u.user.name), in copy_entries_to_user()
859 static int do_replace(void *user, unsigned int len) in do_replace() argument
867 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) in do_replace()
890 if (copy_from_user(newinfo->entries, user + sizeof(tmp), in do_replace()
974 static int do_add_counters(void *user, unsigned int len) in do_add_counters() argument
981 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) in do_add_counters()
[all …]
Dip_tables.c530 && (strcmp(t->target.u.user.name, in mark_source_chains()
570 if (strcmp(t->target.u.user.name, in mark_source_chains()
648 match = find_match_lock(m->u.user.name, &ret, &ipt_mutex); in check_match()
650 duprintf("check_match: `%s' not found\n", m->u.user.name); in check_match()
695 target = ipt_find_target_lock(t->u.user.name, &ret, &ipt_mutex); in check_entry()
697 duprintf("check_entry: `%s' not found\n", t->u.user.name); in check_entry()
1000 u.user.name), in copy_entries_to_user()
1012 u.user.name), in copy_entries_to_user()
1054 do_replace(void *user, unsigned int len) in do_replace() argument
1062 if (copy_from_user(&tmp, user, sizeof(tmp)) != 0) in do_replace()
[all …]
/linux-2.4.37.9/drivers/message/i2o/
DREADME.ioctl13 utilized by user space applications to communicate with IOPs and devices
15 that are available to the user and provides examples of their uses.
21 This document and the I2O user space interface are currently maintained
53 EFAULT Invalid user space pointer was passed
79 EFAULT Invalid user space pointer was passed
108 EFAULT Invalid user space pointer was passed
143 EFAULT Invalid user space pointer was passed
151 changed properly on the IOP. The user should check the result
180 EFAULT Invalid user space pointer was passed
188 properly retreived. The user should check the result list
[all …]
/linux-2.4.37.9/arch/s390x/lib/
Duaccess.S29 slgr %r3,%r4 # %r3 = #bytes to next user page boundary
32 # The page after the current user page might have faulted.
97 slgr %r5,%r4 # %r5 = #bytes to next user page boundary
100 # The page after the current user page might have faulted.
/linux-2.4.37.9/arch/s390/lib/
Duaccess.S29 slr %r3,%r4 # %r3 = #bytes to next user page boundary
32 # The page after the current user page might have faulted.
97 slr %r5,%r4 # %r5 = #bytes to next user page boundary
100 # The page after the current user page might have faulted.
/linux-2.4.37.9/arch/mips/kernel/
Dirixinv.c38 inventory_t *user = userbuf; in dump_inventory_to_user() local
46 copy_to_user (user, inv, sizeof (inventory_t)); in dump_inventory_to_user()
47 user++; in dump_inventory_to_user()
/linux-2.4.37.9/net/ipv4/
Dip_fragment.c75 u32 user; member
324 qp->user == qp_in->user) { in ip_frag_intern()
351 static struct ipq *ip_frag_create(unsigned hash, struct iphdr *iph, u32 user) in ip_frag_create() argument
363 qp->user = user; in ip_frag_create()
386 static inline struct ipq *ip_find(struct iphdr *iph, u32 user) in ip_find() argument
401 qp->user == user) { in ip_find()
409 return ip_frag_create(hash, iph, user); in ip_find()
643 struct sk_buff *ip_defrag(struct sk_buff *skb, u32 user) in ip_defrag() argument
658 if ((qp = ip_find(iph, user)) != NULL) { in ip_defrag()
/linux-2.4.37.9/include/net/irda/
Dirias_object.h90 int user);
92 int user);
94 int len, int user);
/linux-2.4.37.9/arch/m68k/fpsp040/
Dx_unimp.S7 | Invoked when the user program encounters a floating-point
62 fmovel #0,%FPSR |clear all user bits
63 fmovel #0,%FPCR |clear all user exceptions for FPSP
73 bsrl sto_res |store the result in user space
Dfpsp.h64 | because it needs to report an exception back to the user. This
84 .set USER_D0,LV+0 | saved user D0
85 .set USER_D1,LV+4 | saved user D1
86 .set USER_A0,LV+8 | saved user A0
87 .set USER_A1,LV+12 | saved user A1
88 .set USER_FP0,LV+16 | saved user FP0
89 .set USER_FP1,LV+28 | saved user FP1
90 .set USER_FP2,LV+40 | saved user FP2
91 .set USER_FP3,LV+52 | saved user FP3
92 .set USER_FPCR,LV+64 | saved user FPCR
[all …]
/linux-2.4.37.9/Documentation/
Dcachetlb.txt18 if it can be proven that a user address space has never executed
42 This interface flushes an entire user address space from
55 Here we are flushing a specific range of (user) virtual
83 user virtual address 'page' will be visible to the cpu. That
103 Usually, when munmap()'ing an area of user virtual address
168 This interface flushes an entire user address space from
179 Here we are flushing a specific range of (user) virtual
220 size). This setting will force the SYSv IPC layer to only allow user
229 mapped into some user address space, there is always at least one more
231 PAGE_OFFSET. So immediately, once the first user maps a given
[all …]
/linux-2.4.37.9/arch/s390x/kernel/
Dentry.S66 jnz 0f # from user -> load kernel stack
84 mvc SP_PSW(16,%r15),\psworg # move user PSW to stack
91 mvc __LC_RETURN_PSW(16),SP_PSW(%r15) # move user PSW to lowcore
93 lmg %r0,%r15,SP_R0(%r15) # load gprs 0-15 of user
/linux-2.4.37.9/Documentation/powerpc/
Dppc_htab.txt12 The ppc_htab interface is a user level way of accessing the
35 User/Kernel - how many pte's are in use by the kernel or user at that time.
46 bad user addresses that are fixed up by the trap handler.
53 possibility of a user slowing the system by reading this file.
83 - To count only events in user mode or only in kernel mode:
85 echo 'user' > /proc/ppc_htab
90 lack of either of these options counts user and kernel.
/linux-2.4.37.9/Documentation/kbuild/
Dconfig-language.txt42 in a user-driven order. Menuconfig uses 'lxdialog', a back-end utility
53 several user-interface front ends.
183 This verb displays its prompt to the user during the configuration process
188 user interface to display text, and it causes output to appear in the
205 This verb displays the prompt to the user with no adornment whatsoever.
223 This verb displays /prompt/ to the user, accepts a value from the user,
247 This verb displays /prompt/ to the user, accepts a value from the user,
267 This verb displays /prompt/ to the user, accepts a value from the user,
288 This verb displays /prompt/ to the user, accepts a value from the user,
310 This verb displays /prompt/ to the user, accepts a value from the user,
[all …]

12345678910>>...18