diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 16:32:56 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-12 16:32:56 -0400 |
| commit | 862aad56dcd67fd0313db51d09a5269f7e3f1f0b (patch) | |
| tree | 1729d49a6f13a9cd5a4da5cf499d3e76da9620d6 | |
| parent | cc6120c6687c34501c0b1d49b4d7e46c63911fed (diff) | |
| parent | d58dde0f552a5c5c4485b962d8b6e9dd54fefb30 (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6
| -rw-r--r-- | Documentation/aoe/mkshelf.sh | 6 | ||||
| -rw-r--r-- | Documentation/firmware_class/firmware_sample_driver.c | 8 | ||||
| -rw-r--r-- | drivers/block/aoe/aoe.h | 12 |
3 files changed, 14 insertions, 12 deletions
diff --git a/Documentation/aoe/mkshelf.sh b/Documentation/aoe/mkshelf.sh index 8bacf9f2c7cc..32615814271c 100644 --- a/Documentation/aoe/mkshelf.sh +++ b/Documentation/aoe/mkshelf.sh | |||
| @@ -8,13 +8,15 @@ fi | |||
| 8 | n_partitions=${n_partitions:-16} | 8 | n_partitions=${n_partitions:-16} |
| 9 | dir=$1 | 9 | dir=$1 |
| 10 | shelf=$2 | 10 | shelf=$2 |
| 11 | nslots=16 | ||
| 12 | maxslot=`echo $nslots 1 - p | dc` | ||
| 11 | MAJOR=152 | 13 | MAJOR=152 |
| 12 | 14 | ||
| 13 | set -e | 15 | set -e |
| 14 | 16 | ||
| 15 | minor=`echo 10 \* $shelf \* $n_partitions | bc` | 17 | minor=`echo $nslots \* $shelf \* $n_partitions | bc` |
| 16 | endp=`echo $n_partitions - 1 | bc` | 18 | endp=`echo $n_partitions - 1 | bc` |
| 17 | for slot in `seq 0 9`; do | 19 | for slot in `seq 0 $maxslot`; do |
| 18 | for part in `seq 0 $endp`; do | 20 | for part in `seq 0 $endp`; do |
| 19 | name=e$shelf.$slot | 21 | name=e$shelf.$slot |
| 20 | test "$part" != "0" && name=${name}p$part | 22 | test "$part" != "0" && name=${name}p$part |
diff --git a/Documentation/firmware_class/firmware_sample_driver.c b/Documentation/firmware_class/firmware_sample_driver.c index e1c56a7e6583..4bef8c25172c 100644 --- a/Documentation/firmware_class/firmware_sample_driver.c +++ b/Documentation/firmware_class/firmware_sample_driver.c | |||
| @@ -32,14 +32,14 @@ static void sample_firmware_load(char *firmware, int size) | |||
| 32 | u8 buf[size+1]; | 32 | u8 buf[size+1]; |
| 33 | memcpy(buf, firmware, size); | 33 | memcpy(buf, firmware, size); |
| 34 | buf[size] = '\0'; | 34 | buf[size] = '\0'; |
| 35 | printk("firmware_sample_driver: firmware: %s\n", buf); | 35 | printk(KERN_INFO "firmware_sample_driver: firmware: %s\n", buf); |
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | static void sample_probe_default(void) | 38 | static void sample_probe_default(void) |
| 39 | { | 39 | { |
| 40 | /* uses the default method to get the firmware */ | 40 | /* uses the default method to get the firmware */ |
| 41 | const struct firmware *fw_entry; | 41 | const struct firmware *fw_entry; |
| 42 | printk("firmware_sample_driver: a ghost device got inserted :)\n"); | 42 | printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n"); |
| 43 | 43 | ||
| 44 | if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) | 44 | if(request_firmware(&fw_entry, "sample_driver_fw", &ghost_device)!=0) |
| 45 | { | 45 | { |
| @@ -61,7 +61,7 @@ static void sample_probe_specific(void) | |||
| 61 | 61 | ||
| 62 | /* NOTE: This currently doesn't work */ | 62 | /* NOTE: This currently doesn't work */ |
| 63 | 63 | ||
| 64 | printk("firmware_sample_driver: a ghost device got inserted :)\n"); | 64 | printk(KERN_INFO "firmware_sample_driver: a ghost device got inserted :)\n"); |
| 65 | 65 | ||
| 66 | if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) | 66 | if(request_firmware(NULL, "sample_driver_fw", &ghost_device)!=0) |
| 67 | { | 67 | { |
| @@ -83,7 +83,7 @@ static void sample_probe_async_cont(const struct firmware *fw, void *context) | |||
| 83 | return; | 83 | return; |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | printk("firmware_sample_driver: device pointer \"%s\"\n", | 86 | printk(KERN_INFO "firmware_sample_driver: device pointer \"%s\"\n", |
| 87 | (char *)context); | 87 | (char *)context); |
| 88 | sample_firmware_load(fw->data, fw->size); | 88 | sample_firmware_load(fw->data, fw->size); |
| 89 | } | 89 | } |
diff --git a/drivers/block/aoe/aoe.h b/drivers/block/aoe/aoe.h index 721ba8086043..0e9e586e9ba3 100644 --- a/drivers/block/aoe/aoe.h +++ b/drivers/block/aoe/aoe.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Copyright (c) 2004 Coraid, Inc. See COPYING for GPL terms. */ | 1 | /* Copyright (c) 2004 Coraid, Inc. See COPYING for GPL terms. */ |
| 2 | #define VERSION "10" | 2 | #define VERSION "12" |
| 3 | #define AOE_MAJOR 152 | 3 | #define AOE_MAJOR 152 |
| 4 | #define DEVICE_NAME "aoe" | 4 | #define DEVICE_NAME "aoe" |
| 5 | 5 | ||
| @@ -7,12 +7,12 @@ | |||
| 7 | * default is 16, which is 15 partitions plus the whole disk | 7 | * default is 16, which is 15 partitions plus the whole disk |
| 8 | */ | 8 | */ |
| 9 | #ifndef AOE_PARTITIONS | 9 | #ifndef AOE_PARTITIONS |
| 10 | #define AOE_PARTITIONS 16 | 10 | #define AOE_PARTITIONS (16) |
| 11 | #endif | 11 | #endif |
| 12 | 12 | ||
| 13 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * 10 + (aoeminor)) | 13 | #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor)) |
| 14 | #define AOEMAJOR(sysminor) ((sysminor) / 10) | 14 | #define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF) |
| 15 | #define AOEMINOR(sysminor) ((sysminor) % 10) | 15 | #define AOEMINOR(sysminor) ((sysminor) % NPERSHELF) |
| 16 | #define WHITESPACE " \t\v\f\n" | 16 | #define WHITESPACE " \t\v\f\n" |
| 17 | 17 | ||
| 18 | enum { | 18 | enum { |
| @@ -83,7 +83,7 @@ enum { | |||
| 83 | 83 | ||
| 84 | enum { | 84 | enum { |
| 85 | MAXATADATA = 1024, | 85 | MAXATADATA = 1024, |
| 86 | NPERSHELF = 10, | 86 | NPERSHELF = 16, /* number of slots per shelf address */ |
| 87 | FREETAG = -1, | 87 | FREETAG = -1, |
| 88 | MIN_BUFS = 8, | 88 | MIN_BUFS = 8, |
| 89 | }; | 89 | }; |
