lkml.org 
[lkml]   [2002]   [Feb]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH]Size of raw_devices[]
Hi, 

While I was looking at the static arrays in the drivers, I found global
array raw_devices[] used for describing raw device infos is hard sized
by 256. To better prepare for more minor bits in the future, this
small patch is made to using MINORMASK to size raw_devices[] instead of
hardcoding. Please consider it in 2.5.


--
Mingming Caodiff -urN -X dontdiff /usr/src/linux-2.5.3/drivers/char/raw.c 253.raw/drivers/char/raw.c
--- /usr/src/linux-2.5.3/drivers/char/raw.c Tue Jan 1 11:40:34 2002
+++ 253.raw/drivers/char/raw.c Fri Feb 8 14:17:03 2002
@@ -25,7 +25,7 @@
struct semaphore mutex;
} raw_device_data_t;

-static raw_device_data_t raw_devices[256];
+static raw_device_data_t raw_devices[MINORMASK+1];

static ssize_t rw_raw_dev(int rw, struct file *, char *, size_t, loff_t *);

@@ -53,7 +53,7 @@
int i;
register_chrdev(RAW_MAJOR, "raw", &raw_fops);

- for (i = 0; i < 256; i++)
+ for (i = 0; i < MINORMASK+1; i++)
init_MUTEX(&raw_devices[i].mutex);

return 0;

\
 
 \ /
  Last update: 2005-03-22 13:24    [W:0.655 / U:0.012 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site