All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] syscalls: Fix references to filenames
@ 2019-11-04 23:00 Mohammad Nasirifar
  2019-11-04 23:00 ` [PATCH 1/1] syscalls: Fix references to filenames containing syscall defs Mohammad Nasirifar
  0 siblings, 1 reply; 3+ messages in thread
From: Mohammad Nasirifar @ 2019-11-04 23:00 UTC (permalink / raw)
  To: kernelnewbies; +Cc: Mohammad Nasirifar

Hi Everyone,

I wanted to submit this for review but 'get_maintainers.pl' is not very
helpful (I don't want to spam people/lists) and I couldn't find a
similar "cleaning" commit against these files. Was wondering if you could
help me with what I need to do/where I should send this.

Thanks,
Mohammad


Mohammad Nasirifar (1):
  syscalls: Fix references to filenames containing syscall defs

 include/linux/syscalls.h          | 8 ++++----
 include/uapi/asm-generic/unistd.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

-- 
2.23.0


_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] syscalls: Fix references to filenames containing syscall defs
  2019-11-04 23:00 [PATCH 0/1] syscalls: Fix references to filenames Mohammad Nasirifar
@ 2019-11-04 23:00 ` Mohammad Nasirifar
  2019-11-05  1:29   ` Valdis Klētnieks
  0 siblings, 1 reply; 3+ messages in thread
From: Mohammad Nasirifar @ 2019-11-04 23:00 UTC (permalink / raw)
  To: kernelnewbies; +Cc: Mohammad Nasirifar

Fix stale references to files containing syscall definitions in
'include/linux/syscalls.h' and 'include/uapi/asm-generic/unistd.h',
pointing to 'kernel/itimer.c', 'kernel/hrtimer.c', and 'kernel/time.c'.
They are now under 'kernel/time'.

Also definitions of 'getpid', 'getppid', 'getuid', 'geteuid', 'getgid',
'getegid', 'gettid', and 'sysinfo' are now in 'kernel/sys.c'.

Signed-off-by: Mohammad Nasirifar <farnasirim@gmail.com>
---
 include/linux/syscalls.h          | 8 ++++----
 include/uapi/asm-generic/unistd.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index f7c561c4dcdd..1dbefa5e00e5 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -584,13 +584,13 @@ asmlinkage long sys_get_robust_list(int pid,
 asmlinkage long sys_set_robust_list(struct robust_list_head __user *head,
 				    size_t len);
 
-/* kernel/hrtimer.c */
+/* kernel/time/hrtimer.c */
 asmlinkage long sys_nanosleep(struct __kernel_timespec __user *rqtp,
 			      struct __kernel_timespec __user *rmtp);
 asmlinkage long sys_nanosleep_time32(struct old_timespec32 __user *rqtp,
 				     struct old_timespec32 __user *rmtp);
 
-/* kernel/itimer.c */
+/* kernel/time/itimer.c */
 asmlinkage long sys_getitimer(int which, struct itimerval __user *value);
 asmlinkage long sys_setitimer(int which,
 				struct itimerval __user *value,
@@ -731,7 +731,7 @@ asmlinkage long sys_prctl(int option, unsigned long arg2, unsigned long arg3,
 			unsigned long arg4, unsigned long arg5);
 asmlinkage long sys_getcpu(unsigned __user *cpu, unsigned __user *node, struct getcpu_cache __user *cache);
 
-/* kernel/time.c */
+/* kernel/time/time.c */
 asmlinkage long sys_gettimeofday(struct timeval __user *tv,
 				struct timezone __user *tz);
 asmlinkage long sys_settimeofday(struct timeval __user *tv,
@@ -739,7 +739,7 @@ asmlinkage long sys_settimeofday(struct timeval __user *tv,
 asmlinkage long sys_adjtimex(struct __kernel_timex __user *txc_p);
 asmlinkage long sys_adjtimex_time32(struct old_timex32 __user *txc_p);
 
-/* kernel/timer.c */
+/* kernel/sys.c */
 asmlinkage long sys_getpid(void);
 asmlinkage long sys_getppid(void);
 asmlinkage long sys_getuid(void);
diff --git a/include/uapi/asm-generic/unistd.h b/include/uapi/asm-generic/unistd.h
index 1fc8faa6e973..6423f5fa4b8e 100644
--- a/include/uapi/asm-generic/unistd.h
+++ b/include/uapi/asm-generic/unistd.h
@@ -328,13 +328,13 @@ __SC_COMP(__NR_set_robust_list, sys_set_robust_list, \
 __SC_COMP(__NR_get_robust_list, sys_get_robust_list, \
 	  compat_sys_get_robust_list)
 
-/* kernel/hrtimer.c */
+/* kernel/time/hrtimer.c */
 #if defined(__ARCH_WANT_TIME32_SYSCALLS) || __BITS_PER_LONG != 32
 #define __NR_nanosleep 101
 __SC_3264(__NR_nanosleep, sys_nanosleep_time32, sys_nanosleep)
 #endif
 
-/* kernel/itimer.c */
+/* kernel/time/itimer.c */
 #define __NR_getitimer 102
 __SC_COMP(__NR_getitimer, sys_getitimer, compat_sys_getitimer)
 #define __NR_setitimer 103
@@ -507,7 +507,7 @@ __SYSCALL(__NR_prctl, sys_prctl)
 #define __NR_getcpu 168
 __SYSCALL(__NR_getcpu, sys_getcpu)
 
-/* kernel/time.c */
+/* kernel/time/time.c */
 #if defined(__ARCH_WANT_TIME32_SYSCALLS) || __BITS_PER_LONG != 32
 #define __NR_gettimeofday 169
 __SC_COMP(__NR_gettimeofday, sys_gettimeofday, compat_sys_gettimeofday)
@@ -517,7 +517,7 @@ __SC_COMP(__NR_settimeofday, sys_settimeofday, compat_sys_settimeofday)
 __SC_3264(__NR_adjtimex, sys_adjtimex_time32, sys_adjtimex)
 #endif
 
-/* kernel/timer.c */
+/* kernel/sys.c */
 #define __NR_getpid 172
 __SYSCALL(__NR_getpid, sys_getpid)
 #define __NR_getppid 173
-- 
2.23.0


_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] syscalls: Fix references to filenames containing syscall defs
  2019-11-04 23:00 ` [PATCH 1/1] syscalls: Fix references to filenames containing syscall defs Mohammad Nasirifar
@ 2019-11-05  1:29   ` Valdis Klētnieks
  0 siblings, 0 replies; 3+ messages in thread
From: Valdis Klētnieks @ 2019-11-05  1:29 UTC (permalink / raw)
  To: Mohammad Nasirifar; +Cc: Mohammad Nasirifar, kernelnewbies


[-- Attachment #1.1: Type: text/plain, Size: 1388 bytes --]

On Mon, 04 Nov 2019 18:00:05 -0500, Mohammad Nasirifar said:
> Fix stale references to files containing syscall definitions in
> 'include/linux/syscalls.h' and 'include/uapi/asm-generic/unistd.h',
> pointing to 'kernel/itimer.c', 'kernel/hrtimer.c', and 'kernel/time.c'.
> They are now under 'kernel/time'.
>
> Also definitions of 'getpid', 'getppid', 'getuid', 'geteuid', 'getgid',
> 'getegid', 'gettid', and 'sysinfo' are now in 'kernel/sys.c'.
>
> Signed-off-by: Mohammad Nasirifar <farnasirim@gmail.com>
> ---
>  include/linux/syscalls.h          | 8 ++++----
>  include/uapi/asm-generic/unistd.h | 8 ++++----
>  2 files changed, 8 insertions(+), 8 deletions(-)

This patch looks sane, correct, and properly formatted. All in all,
a good first patch. :)

Feel free to add this when you submit it:

Acked-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>

As far as where to send it?

Looking at the output of get_maintainer.pl for those two files, I'd use:

To: Arnd Bergmann <arnd@arndb.de>, Andrew Morton <akpm@linux-foundation.org>
cc: linux-api@vger.kernel.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org

(Arnd as maintainer, Andrew because he's well-known as having a soft spot for
trivial patches, and the three lists because they're relevant lists.  I skipped all the
BPF people because although they've done commits to those files, this isn't
really BPF related.)

[-- Attachment #1.2: Type: application/pgp-signature, Size: 832 bytes --]

[-- Attachment #2: Type: text/plain, Size: 170 bytes --]

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-11-05  1:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-04 23:00 [PATCH 0/1] syscalls: Fix references to filenames Mohammad Nasirifar
2019-11-04 23:00 ` [PATCH 1/1] syscalls: Fix references to filenames containing syscall defs Mohammad Nasirifar
2019-11-05  1:29   ` Valdis Klētnieks

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.