Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Apr 2019 11:21:01 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r345926 - stable/11/sys/compat/linuxkpi/common/include/linux
Message-ID:  <201904051121.x35BL1LV004176@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Fri Apr  5 11:21:00 2019
New Revision: 345926
URL: https://svnweb.freebsd.org/changeset/base/345926

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

Modified:
  stable/11/sys/compat/linuxkpi/common/include/linux/sched.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/compat/linuxkpi/common/include/linux/sched.h
==============================================================================
--- stable/11/sys/compat/linuxkpi/common/include/linux/sched.h	Fri Apr  5 11:20:44 2019	(r345925)
+++ stable/11/sys/compat/linuxkpi/common/include/linux/sched.h	Fri Apr  5 11:21:00 2019	(r345926)
@@ -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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904051121.x35BL1LV004176>