HEX
Server: nginx/1.24.0
System: Linux ip-172-31-22-109 6.17.0-1012-aws #12~24.04.1-Ubuntu SMP Mon Apr 6 17:36:28 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/src/linux-headers-6.17.0-1013-aws/arch/s390/include/asm/current.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 *  S390 version
 *    Copyright IBM Corp. 1999
 *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
 *
 *  Derived from "include/asm-i386/current.h"
 */

#ifndef _S390_CURRENT_H
#define _S390_CURRENT_H

#include <asm/lowcore.h>
#include <asm/machine.h>

struct task_struct;

static __always_inline struct task_struct *get_current(void)
{
	unsigned long ptr, lc_current;

	lc_current = offsetof(struct lowcore, current_task);
	asm_inline(
		ALTERNATIVE("	lg	%[ptr],%[offzero](%%r0)\n",
			    "	lg	%[ptr],%[offalt](%%r0)\n",
			    ALT_FEATURE(MFEATURE_LOWCORE))
		: [ptr] "=d" (ptr)
		: [offzero] "i" (lc_current),
		  [offalt] "i" (lc_current + LOWCORE_ALT_ADDRESS));
	return (struct task_struct *)ptr;
}

#define current get_current()

#endif /* !(_S390_CURRENT_H) */