svn commit: r345099 - head/sys/compat/linuxkpi/common/include/linux

Hans Petter Selasky hselasky at FreeBSD.org
Wed Mar 13 18:53:30 UTC 2019


Author: hselasky
Date: Wed Mar 13 18:53:29 2019
New Revision: 345099
URL: https://svnweb.freebsd.org/changeset/base/345099

Log:
  Implement get_task_comm() in the LinuxKPI.
  
  Submitted by:		Johannes Lundberg <johalun0 at gmail.com>
  MFC after:		1 week
  Sponsored by:		Limelight Networks
  Sponsored by:		Mellanox Technologies

Modified:
  head/sys/compat/linuxkpi/common/include/linux/sched.h

Modified: head/sys/compat/linuxkpi/common/include/linux/sched.h
==============================================================================
--- head/sys/compat/linuxkpi/common/include/linux/sched.h	Wed Mar 13 18:51:33 2019	(r345098)
+++ head/sys/compat/linuxkpi/common/include/linux/sched.h	Wed Mar 13 18:53:29 2019	(r345099)
@@ -183,4 +183,12 @@ local_clock(void)
 	return ((uint64_t)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec);
 }
 
+static inline const char *
+get_task_comm(char *buf, struct task_struct *task)
+{
+
+	buf[0] = 0; /* buffer is too small */
+	return (task->comm);
+}
+
 #endif	/* _LINUX_SCHED_H_ */


More information about the svn-src-all mailing list