2.1.89pre3 fixes

Matthew Harrell (mharrell@std.saic.com)
Fri, 27 Feb 1998 12:00:09 -0500 (EST)


--ELM888598809-3344-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

I had to have the following patches to get 2.1.89pre3 to work fully. The
first fixes a compile time error and the second a missing symbol if the
scsi cdrom is compiled as a module with an SMP kernel.

-- 
  Matthew Harrell                          I used to have a handle on life,
  Simulation Technology Division, SAIC      then it broke.
  mharrell@std.saic.com

--ELM888598809-3344-0_ Content-Type: text/plain; charset=KOI8-R Content-Disposition: attachment; filename=fixes-89.patch Content-Description: fixes-89.patch Content-Transfer-Encoding: 7bit

diff -urN linux/net/netlink/netlink_dev.c-ori linux/net/netlink/netlink_dev.c --- linux/net/netlink/netlink_dev.c-ori Fri Feb 27 10:47:55 1998 +++ linux/net/netlink/netlink_dev.c Fri Feb 27 10:50:03 1998 @@ -42,7 +42,7 @@ if (sock->ops->poll==NULL) return 0; - return sock->ops->poll(sock, wait); + return sock->ops->poll(file, sock, wait); } /* diff -urN linux/drivers/scsi/scsi_syms.c-ori linux/drivers/scsi/scsi_syms.c --- linux/drivers/scsi/scsi_syms.c-ori Sun Feb 22 02:28:18 1998 +++ linux/drivers/scsi/scsi_syms.c Sun Feb 22 02:30:53 1998 @@ -82,5 +82,10 @@ EXPORT_SYMBOL(scsi_devicelist); EXPORT_SYMBOL(scsi_device_types); +#ifdef __SMP__ +# ifdef CONFIG_BLK_DEV_SR_MODULE +EXPORT_SYMBOL(io_request_lock); +# endif +#endif #endif /* CONFIG_MODULES */

--ELM888598809-3344-0_--

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu