2.5.8-pre3 set_bit cleanup IV

2.5.8-pre3 set_bit cleanup IV

Post by Rusty Russel » Thu, 11 Apr 2002 23:20:12



This changes everything arch specific PPC and i386 which should have
been unsigned long (it doesn't *matter*, but bad habits get copied to
where it does matter).

No object code changes,
Rusty.

diff -urN -I \$.*\$ --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal linux-2.5.8-pre1.19752/include/asm-i386/thread_info.h linux-2.5.8-pre1.19752.updated/include/asm-i386/thread_info.h
--- linux-2.5.8-pre1.19752/include/asm-i386/thread_info.h       Wed Feb 20 17:56:40 2002

 struct thread_info {
        struct task_struct      *task;          /* main task structure */
        struct exec_domain      *exec_domain;   /* execution domain */
-       __u32                   flags;          /* low level flags */
+       unsigned long           flags;          /* low level flags */
        __u32                   cpu;            /* current CPU */
        __s32                   preempt_count; /* 0 => preemptable, <0 => BUG */

diff -urN -I \$.*\$ --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal linux-2.5.8-pre1.19752/arch/ppc/platforms/pmac_pic.c linux-2.5.8-pre1.19752.updated/arch/ppc/platforms/pmac_pic.c
--- linux-2.5.8-pre1.19752/arch/ppc/platforms/pmac_pic.c        Wed Feb 20 17:57:04 2002

  * and disables all interrupts except for the nominated one.
  * sleep_restore_intrs() restores the states of all interrupt enables.
  */
-unsigned int sleep_save_mask[2];
+unsigned long sleep_save_mask[2];

 void __pmac
 pmac_sleep_save_intrs(int viaint)
diff -urN -I \$.*\$ --exclude TAGS -X /home/rusty/devel/kernel/kernel-patches/current-dontdiff --minimal linux-2.5.8-pre1.19752/drivers/macintosh/adb.c linux-2.5.8-pre1.19752.updated/drivers/macintosh/adb.c
--- linux-2.5.8-pre1.19752/drivers/macintosh/adb.c      Wed Feb 20 17:55:08 2002

 static int adb_got_sleep = 0;
 static int adb_inited = 0;
 static pid_t adb_probe_task_pid;
-static int adb_probe_task_flag;
+static unsigned long adb_probe_task_flag;
 static wait_queue_head_t adb_probe_task_wq;
 static int sleepy_trackpad;

 }

 static struct adb_request adb_sreq;
-static int adb_sreq_lock; // Use semaphore ! */
+static unsigned long adb_sreq_lock; // Use semaphore ! */

 int
 adb_request(struct adb_request *req, void (*done)(struct adb_request *),

--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in

More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/