Re: Re: [parisc-linux-cvs] linux-2.6.git: Changes to 'master'
Grant Grundler <[email protected]>
| Newsgroups | gmane.linux.ports.hppa |
|---|---|
| Message-ID | <[email protected]> |
On Sat, Dec 23, 2006 at 12:27:16AM +0100, Helge Deller wrote: ... > > add missing syscalls for vmsplice, move_pages, getcpu & epoll_pwait > > maybe people here could double-check if my ENTRY_SAME/ENTRY_COMP choice is correct ? > > + ENTRY_SAME(vmsplice) This seems to be related to fs/compat.c:compat_sys_vmsplice(). Because of the "void *" in struct iovec, this needs to be ENTRY_COMP(). > + ENTRY_COMP(move_pages) /* 295 */ THis is correct. See kernel/compat.c:compat_sys_move_pages(). > + ENTRY_SAME(getcpu) This looks correct. > + ENTRY_SAME(epoll_pwait) This looks correct too. I'll commit the fix for the vmsplice entry. thanks, grant