~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to include/linux/syscalls.h

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
610
610
asmlinkage long sys_sendto(int, void __user *, size_t, unsigned,
611
611
                                struct sockaddr __user *, int);
612
612
asmlinkage long sys_sendmsg(int fd, struct msghdr __user *msg, unsigned flags);
 
613
asmlinkage long sys_sendmmsg(int fd, struct mmsghdr __user *msg,
 
614
                             unsigned int vlen, unsigned flags);
613
615
asmlinkage long sys_recv(int, void __user *, size_t, unsigned);
614
616
asmlinkage long sys_recvfrom(int, void __user *, size_t, unsigned,
615
617
                                struct sockaddr __user *, int __user *);
844
846
asmlinkage long sys_open_by_handle_at(int mountdirfd,
845
847
                                      struct file_handle __user *handle,
846
848
                                      int flags);
 
849
asmlinkage long sys_setns(int fd, int nstype);
847
850
#endif