Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S264659AbTFAP7f (ORCPT ); Sun, 1 Jun 2003 11:59:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S264660AbTFAP7f (ORCPT ); Sun, 1 Jun 2003 11:59:35 -0400 Received: from main.gmane.org ([80.91.224.249]:11921 "EHLO main.gmane.org") by vger.kernel.org with ESMTP id S264659AbTFAP7d (ORCPT ); Sun, 1 Jun 2003 11:59:33 -0400 X-Injected-Via-Gmane: http://gmane.org/ To: linux-kernel@vger.kernel.org From: Pasi Savolainen Subject: [patch][2.5.70] DRM (mga) SMP link fix (flush_tlb_all) Date: Sun, 1 Jun 2003 16:02:00 +0000 (UTC) Message-ID: X-Complaints-To: usenet@main.gmane.org User-Agent: slrn/0.9.7.4 (Linux) Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1002 Lines: 25 drivers/char/drm/drm_memory.h needs this to compile as module (at least) on SMP, where flush_tlb_all() isn't a inline macro. For some reason insmod/modprobe got a hard hang with this, even though it did detect missing symbol (should've boil out at that stage?). This hang prevents any further module loading/unloading activity, and is very frustrating. Is it on must-fix list yet? --- linux-2.5.70/arch/i386/kernel/i386_ksyms.c 2003-06-01 17:25:41.000000000 +0300 +++ linux-2.5.70-mo/arch/i386/kernel/i386_ksyms.c 2003-06-01 17:26:13.000000000 +0300 @@ -159,7 +159,7 @@ /* TLB flushing */ EXPORT_SYMBOL(flush_tlb_page); - +EXPORT_SYMBOL(flush_tlb_all); #endif #ifdef CONFIG_X86_IO_APIC -- Psi -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/