public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* fake_ino fixes
@ 2004-09-13 15:52 Albert Cahalan
  2004-09-14  2:03 ` William Lee Irwin III
  0 siblings, 1 reply; 2+ messages in thread
From: Albert Cahalan @ 2004-09-13 15:52 UTC (permalink / raw)
  To: linux-kernel mailing list, Andrew Morton OSDL, Linus Torvalds

This improves /proc inode numbering a bit.
If ino_t is 32-bit: just fix task 0 handling
If ino_t is 64-bit: fix large fd numbers too

Handling PID 0xffff on 32-bit was dropped in
favor of handling PID 0 correctly, since PID 0
can be seen with the default pid_max value.

Signed-off-by: Albert Cahalan <albert@users.sf.net>

diff -Naurd ol/fs/proc/base.c nl/fs/proc/base.c
--- ol/fs/proc/base.c	2004-09-13 11:13:54.000000000 -0400
+++ nl/fs/proc/base.c	2004-09-13 11:47:29.000000000 -0400
@@ -34,14 +34,16 @@
 #include <linux/ptrace.h>
 
 /*
- * For hysterical raisins we keep the same inumbers as in the old procfs.
- * Feel free to change the macro below - just keep the range distinct from
- * inumbers of the rest of procfs (currently those are in 0x0000--0xffff).
+ * This range should be distinct from inumbers of the rest of procfs.
+ * (currently those are in 0x0000--0xffff) Remember that PID 0 can
+ * be seen. Don't go above PID 0xfffe on any port with a 32-bit ino_t!
+ * (currently: Alpha, zSeries, and all 32-bit ports) Also, you'd best
+ * avoid using over 0x8000 file descriptors per task on such ports.
  * As soon as we'll get a separate superblock we will be able to forget
  * about magical ranges too.
  */
 
-#define fake_ino(pid,ino) (((pid)<<16)|(ino))
+#define fake_ino(pid,ino) ((((ino_t)pid+1)<<(sizeof(ino_t)*4))|(ino))
 
 enum pid_directory_inos {
 	PROC_TGID_INO = 2,
@@ -779,7 +781,8 @@
 {
 	struct inode *inode = filp->f_dentry->d_inode;
 	struct task_struct *p = proc_task(inode);
-	unsigned int fd, tid, ino;
+	unsigned int fd, tid;
+	ino_t ino;
 	int retval;
 	char buf[NUMBUF];
 	struct files_struct * files;




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-09-14  2:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-13 15:52 fake_ino fixes Albert Cahalan
2004-09-14  2:03 ` William Lee Irwin III

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox