Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b68a68d3 authored by Eric W. Biederman's avatar Eric W. Biederman
Browse files

signal: Move addr_lsb into the _sigfault union for clarity



The addr_lsb fields is only valid and available when the
signal is SIGBUS and the si_code is BUS_MCEERR_AR or BUS_MCEERR_AO.
Document this with a comment and place the field in the _sigfault union
to make this clear.

All of the fields stay in the same physical location so both the old
and new definitions of struct siginfo will continue to work.

Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent b713da69
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -221,15 +221,23 @@ typedef struct compat_siginfo {
#ifdef __ARCH_SI_TRAPNO
			int _trapno;	/* TRAP # which caused the signal */
#endif
			short int _addr_lsb;	/* Valid LSB of the reported address. */
			union {
				/*
				 * used when si_code=BUS_MCEERR_AR or
				 * used when si_code=BUS_MCEERR_AO
				 */
				short int _addr_lsb;	/* Valid LSB of the reported address. */
				/* used when si_code=SEGV_BNDERR */
				struct {
					short _dummy_bnd;
					compat_uptr_t _lower;
					compat_uptr_t _upper;
				} _addr_bnd;
				/* used when si_code=SEGV_PKUERR */
				struct {
					short _dummy_pkey;
					u32 _pkey;
				} _addr_pkey;
			};
		} _sigfault;

+11 −3
Original line number Diff line number Diff line
@@ -94,15 +94,23 @@ typedef struct siginfo {
			unsigned int _flags;	/* see ia64 si_flags */
			unsigned long _isr;	/* isr */
#endif
			short _addr_lsb; /* LSB of the reported address */
			union {
				/*
				 * used when si_code=BUS_MCEERR_AR or
				 * used when si_code=BUS_MCEERR_AO
				 */
				short _addr_lsb; /* LSB of the reported address */
				/* used when si_code=SEGV_BNDERR */
				struct {
					short _dummy_bnd;
					void __user *_lower;
					void __user *_upper;
				} _addr_bnd;
				/* used when si_code=SEGV_PKUERR */
				struct {
					short _dummy_pkey;
					__u32 _pkey;
				} _addr_pkey;
			};
		} _sigfault;

@@ -142,7 +150,7 @@ typedef struct siginfo {
#define si_addr_lsb	_sifields._sigfault._addr_lsb
#define si_lower	_sifields._sigfault._addr_bnd._lower
#define si_upper	_sifields._sigfault._addr_bnd._upper
#define si_pkey		_sifields._sigfault._pkey
#define si_pkey		_sifields._sigfault._addr_pkey._pkey
#define si_band		_sifields._sigpoll._band
#define si_fd		_sifields._sigpoll._fd
#define si_call_addr	_sifields._sigsys._call_addr