Restore shmid as inode# to fix /proc/pid/maps ABI breakage

shmid used to be stored as inode# for shared memory segments. Some of
the proc-ps tools use this from /proc/pid/maps. Recent cleanups
to newseg() changed it. This patch sets inode number back to shared
memory id to fix breakage.

Signed-off-by: Badari Pulavarty <pbadari@us.ibm.com>
Cc: "Albert Cahalan" <acahalan@gmail.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Badari Pulavarty and committed by Linus Torvalds 30475cc1 dd08c40e

+5
+5
ipc/shm.c
··· 397 397 shp->shm_nattch = 0; 398 398 shp->id = shm_buildid(ns, id, shp->shm_perm.seq); 399 399 shp->shm_file = file; 400 + /* 401 + * shmid gets reported as "inode#" in /proc/pid/maps. 402 + * proc-ps tools use this. Changing this will break them. 403 + */ 404 + file->f_dentry->d_inode->i_ino = shp->id; 400 405 401 406 ns->shm_tot += numpages; 402 407 shm_unlock(shp);