The shmat() handling needs to do target-specific handling of the attach address for shmat(): * if the SHM_RND flag is passed, the address is rounded down to a SHMLBA boundary * if SHM_RND is not passed, then the call is failed EINVAL if the address is not a multiple of SHMLBA Since SHMLBA is target-specific, we need to do this checking and rounding in QEMU and can't leave it up to the host syscall. Allow targets to define TARGET_FORCE_SHMLBA and provide a target_shmlba() function if appropriate, and update do_shmat() to honour them. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
		
			
				
	
	
		
			30 lines
		
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef SH4_TARGET_SYSCALL_H
 | 
						|
#define SH4_TARGET_SYSCALL_H
 | 
						|
 | 
						|
struct target_pt_regs {
 | 
						|
        unsigned long regs[16];
 | 
						|
        unsigned long pc;
 | 
						|
        unsigned long pr;
 | 
						|
        unsigned long sr;
 | 
						|
        unsigned long gbr;
 | 
						|
        unsigned long mach;
 | 
						|
        unsigned long macl;
 | 
						|
        long tra;
 | 
						|
};
 | 
						|
 | 
						|
#define UNAME_MACHINE "sh4"
 | 
						|
#define UNAME_MINIMUM_RELEASE "2.6.32"
 | 
						|
 | 
						|
#define TARGET_MINSIGSTKSZ 2048
 | 
						|
#define TARGET_MLOCKALL_MCL_CURRENT 1
 | 
						|
#define TARGET_MLOCKALL_MCL_FUTURE  2
 | 
						|
 | 
						|
#define TARGET_FORCE_SHMLBA
 | 
						|
 | 
						|
static inline abi_ulong target_shmlba(CPUSH4State *env)
 | 
						|
{
 | 
						|
    return 0x4000;
 | 
						|
}
 | 
						|
 | 
						|
#endif /* SH4_TARGET_SYSCALL_H */
 |