Bug 623307

Summary: Boot hangs when NFS is enabled
Product: [openSUSE] openSUSE 11.3 Reporter: Noel Carneiro <nc.carneiro>
Component: NetworkAssignee: Neil Brown <nfbrown>
Status: RESOLVED FIXED QA Contact: E-mail List <qa-bugs>
Severity: Critical    
Priority: P5 - None CC: forgotten_qh4p90Reu9, iansamit, meissner, nc.carneiro, noelcarlos.carneiro, scheve
Version: Final   
Target Milestone: ---   
Hardware: x86-64   
OS: openSUSE 11.3   
Whiteboard: maint:released:sle11-sp1:36842 maint:released:sle11-sp1:36845 maint:released:sle11-sp1:36844 maint:released:sle11-sp1:36927 maint:released:sle11-sp1:36843 maint:released:sle11-sp1:36846 maint:released:sle11-sp1:36928 maint:released:sle11-sp1:36850 maint:released:sle11-sp1:36851 maint:released:sle11-sp1:36847
Found By: --- Services Priority:
Business Priority: Blocker: ---
Marketing QA Status: --- IT Deployment: ---
Bug Depends on:    
Bug Blocks: 679059    
Attachments: /etc/fstab
/etc/sysconfig/nfs
Ian's fstab

Description Noel Carneiro 2010-07-18 23:12:55 UTC
User-Agent:       Mozilla/5.0 (X11; U; Linux x86_64; pt-BR; rv:1.9.1.10) Gecko/20100506 SUSE/3.5.10-0.1.1 Firefox/3.5.10

Hi

I just installed OpenSUSE 11.3 (final version, fresh installation) and had the same problem reported on Buzilla # 593599, regarding the system not booting when NFS is enable. It was reported the problem was resolved in Milestone 5 but I just installed the final version and still got the problem!
Thanks very much.

Regards,

Noel Carneiro

Reproducible: Always

Steps to Reproduce:
1.Install system (fresh installation)
2.Add NFS directory mappings using YaST
3.reboot
Actual Results:  
System is not booting. System is just waiting

Expected Results:  
Normal reboot, system working properly, with NFS directories mapped.
Comment 1 Forgotten User qh4p90Reu9 2010-07-23 05:22:47 UTC
I also have this. The system is waiting on "Starting nfs client services", but responds to keyboard input. All I can do is hit the shutdown key, which responds appropriately and shuts the system down, but nothing I do can make it boot past the nfs client services message.
Comment 2 Neil Brown 2010-07-29 00:25:00 UTC
Is the last message exactly:

Starting nfs client services:

or is it

Starting nfs clinet services: sm-notify

or is there also any of
 gssd idmapd
??

Can you attach your /etc/fstab and /etc/sysconfig/nfs files?

Thanks.
Comment 3 Ian Smith 2010-07-29 11:38:41 UTC
I can also confirm this bug.

For me, the boot process eventually continues, but it can stall for up to 30 minutes.

From memory, the stalled point reads "Starting nfs clinet services: sm-notify" and I think "idmapd" as well. However, I have removed my NFS shares from /etc/fstab so I cannot check right now.

If nobody else responds before I go to bed, I will re-add the nfs mappings, reboot and take note of the message.

BTW, a temporary work-around, while this is being resolved is to add /bin/mount to your sudo list using yast, then make a script file with the manual mount commands listed, and put it in your KDE/Gnome/LXDE autostart directory. e.g.

sudo mount 192.168.1.2:/home/ian /home/ian/Server/
etc.

About 5 minutes after booting up, my NFS shares become available this way.
Comment 4 Ian Smith 2010-07-29 11:59:05 UTC
I just found something relevant on the openSuse forums at: http://forums.opensuse.org/english/get-help-here/pre-release-beta/441898-opensuse-11-3-nfs-problem-hang-during-boot-process-2.html

It seems there is a conflict of versions between the server and client. 

The work-around suggested there is: "Edit /etc/nfsmount.conf as root and find the line with #Defaultvers=4, remove the # and change 4 to 3."

Strange though, I updated both my server and client to openSuse 1.3 on the same day. I'm running LXDE on the server, and KDE on the client if that helps.
Comment 5 Noel Carneiro 2010-07-29 16:50:58 UTC
Created attachment 379299 [details]
/etc/fstab
Comment 6 Noel Carneiro 2010-07-29 16:55:32 UTC
Created attachment 379304 [details]
/etc/sysconfig/nfs
Comment 7 Noel Carneiro 2010-07-29 17:01:07 UTC
Neil,

attached are the info files you requested.

The message I get is:

          "Starting nfs client services:"

and then it hangs forever (well, I've never waited for more than 5 minutes before shutdown the system!).

Regards,

Noel Carneiro
Comment 8 Neil Brown 2010-08-11 06:49:21 UTC
Thanks Noel.
As it doesn't then print " sm-notify", it must be hanging before there.
Option are:
  check_portmap
  modprobe nfs
  sysctl
  mount_usr

From you fstab I see you mount /usr/local via NFS.  This is handled by
mount_usr so that is almost certainly the issue.

I'm not sure exactly what is causing the hang, but I suspect it is NFSv4 related,
as NFSv4 has more local dependencies.

Could you try changing /etc/init.d/nfs so that in the mount_usr function
(near line 133) the mount commands have the option vers=3.
i.e.

mount_usr() {
    test -n "$usr" -o -n "$opt" || return
    local where
    for where in $usr $opt ; do
        mount -o nolock,vers=3 $where || {
            # maybe network device hasn't appeared yet.
            udevadm settle
            mount -o nolock,vers=3 $where
        }
    done
}


(two changes, both "-o nolock" to "-n nolock,vers=3")
and see if that makes a difference?

Thanks.

Ian: do you have a /usr/* filesystem in /etc/fstab too ??
Comment 9 Ian Smith 2010-08-12 11:58:18 UTC
Created attachment 382537 [details]
Ian's fstab

>>Ian: do you have a /usr/* filesystem in /etc/fstab too ??

Not as far as I can tell, but here it is in case I missed something.

BTW, I haven't had any problems since changing NFS to version 3
Comment 10 Neil Brown 2010-08-26 01:38:41 UTC
I've managed to reproduce this by using a server that doesn't support
NFSv4 and doesn't support TCP - i.e. only NFSv3 over UDP.

The current fall-back mechanisms don't appear to support that situation.

If anyone can confirm that this is the configuration of servers which show the problem, that would be great.
Easiest way would be to report the output of
   rpcinfo -p servername

Thanks.
Comment 11 Noel Carneiro 2010-08-30 18:38:47 UTC
Hi, Neil.

Sorry for the long delay.

I tried the modifications you suggested. After reboot, I get the message:

"Starting NFS client services: mount.nfs: mount to NFS server '192.168.1.101:/nethdd/usrlocal' failed: System Error: Network is unreachable

mount.nfs: mount to NFS server '192.168.1.101:/nethdd/usrlocal' failed: System Error: sm-notify idmapd"

and then it hangs for about 5-7 minutes before continues with booting. Eventually, I get the login screen and was able to log in.

I run "rpcinfo -p 192.168.1.101" and the output:

   program vers proto   port  service
    100000    2   tcp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp  32765  status
    100024    1   tcp  32765  status
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100021    1   udp   1026  nlockmgr
    100021    3   udp   1026  nlockmgr
    100021    4   udp   1026  nlockmgr
    100021    1   tcp   1025  nlockmgr
    100021    3   tcp   1025  nlockmgr
    100021    4   tcp   1025  nlockmgr
    100005    1   udp  32767  mountd
    100005    1   tcp  32767  mountd
    100005    2   udp  32767  mountd
    100005    2   tcp  32767  mountd
    100005    3   udp  32767  mountd
    100005    3   tcp  32767  mountd

Regards,

Noel Carneiro
Comment 12 Neil Brown 2010-09-06 06:10:47 UTC
Thanks Noel.

It looks like your problem is that the network isn't configured when the
filesystems in fstab are mounted.

The most common cause of this is when 'network-manager' is being used to
configure the network.  In this case the network isn't enabled until you
log in, which is well after fstab is processed.

If that is the case for you, then you really need to choose between using
network-manager and using fstab for NFS mounts - they really don't work well
together.

The alternative to network-manager is to use 'ifup' which Yast can configure
for you - I believe it creates a file in /et/sysconfig/network/ifcfg-XXX

The alternative to fstab is to use automount.

You might be able to get away with adding the 'bg' option for the nfs mounts
in /etc/fstab.  That should cause it to wait in the back ground until the 
network comes up an then the mount things.
This would not really work for mounting /home though.

So:  are you using network-manager?  Can you change that?
Comment 13 Noel Carneiro 2010-09-07 06:41:03 UTC
hi, Neil.

Thanks for the reply. Yes, I'm using Network-manager. I've tried ifup before, in my other machine with wireless connection (opensuse 11.2), and it never recognized the nfs mounts. So, for 11.3, I just went straight to NM!

I really don't know how to use automount. I tried it once but it didn't mount at boot time (I might have specified the wrong options in the auto.master file - I dodn't know!).

Best regards,

Noel Carneiro
Comment 14 Noel Carneiro 2010-09-07 07:23:19 UTC
BTW, since in version 11.2 the nfs mounts work fine, using NM and fstab, what have changed in version 11.3 that makes it fail?

Noel Carneiro
Comment 15 noel carneiro 2010-10-18 21:21:24 UTC
hi, Neil.

I've tried using ifup again (opensuse 11.3) but with no success. The system boots and the wireless connection is running but it never recognizes the nfs mounts.

Do you know what could have changed from version 11.2 to version 11.3 that makes it fail?

Best regards,

Noel Carneiro
Comment 16 Neil Brown 2010-10-19 05:07:54 UTC
Quite a lot changed from 11.2 to 11.3 - we got a new upstream release of nfs-utils,
1.1.3 was replaced by 1.2.1.

I have had a bit of a look through the changes (there are a lot) and the most
obvious this is that mount now default to nfsv4.  It should fall-back to nfsv3,
but maybe it doesn't do that so well in some circumstances.

Can you try changing your /etc/fstab so that on all the 'nfs' line, the options
are 'vers=3' instead of 'defaults'.

Let me know how that goes.
Comment 17 Ian Smith 2010-10-19 06:07:17 UTC
Rather than editing every nfs entry in fstab, why not simply make a single edit to /etc/nfsmount.conf, changing the line

#Defaultvers=4

to 

Defaultvers=3

I have not seen anyone on the forums yet for whom this has not worked. 

Also, if you edit the fstab entries manually, then later on add a new nfs directory using Yast, I would think that the new nfs entry in fstab will default to version 4, and the problem will return.
Comment 18 Neil Brown 2010-10-25 02:51:10 UTC
Yes, I understand the problem a lot better now.
It is indeed exactly related to NFSv4.
With NFSv3, mount.nfs attempts to contact portmap on the server,
gets ENETUNREACH and fails quickly.
With NFSv4, portmap isn't used.  Rather the kernel tries to contact the
NFS server directly, gets ENETUNREACH and times out before giving up.
There are discussions underway on the NFS list as to how to fix this.

So setting Defaultvers=3 is certainly the simplest work-around.
Comment 19 Noel Carneiro 2010-10-25 04:47:31 UTC
Hi, Neil and Ian.

Sorry it took long for my reply.

I tried both ways, first fstab with "vers=3" and then nfsmount.conf with Defaultvers=3 and it worked with both methods.

Advancing Ian's line of thought, I was wondering what would happens in the next version, if the work-around would have to be used again but, from Neil's comment, I see that it might be solved before that.

That said, I think this work-around solves the problem until a final solution can be found and the issue can be closed. Am I right?

Best regards,

Noel Carneiro
Comment 20 Neil Brown 2010-10-25 05:56:14 UTC
I'd rather leave it open until it is properly solved thanks.
That will help remind me to make sure the solution gets into the
openSUSE kernel once it is developed.

Thanks.
Comment 21 Noel Carneiro 2010-10-25 15:10:09 UTC
That's fine with me!

I'm just grateful that it was solved. Thanks very much for your (and Ian's) help.

Best regards,

Noel Carneiro
Comment 22 noel carneiro 2010-10-26 13:56:44 UTC
Hi, Neil.

I'm sorry to bother you again but the whole thing didn't work when I went wireless.

I thought I had cover wireless connections in my tests but I didn't and when I went wireless yesterday night, the NFS mounts never came up.

Do you have any ideas why it would work wired but not wireless?

Thanks,

Noel Carneiro
Comment 23 Neil Brown 2010-10-27 23:06:40 UTC
Not really.

If the network connection is being managed by NetworkManager, then it should be
running the 'nfs' start up script no matter what network comes up.
I think.  I'm not really that familiar with network-manager.

Maybe file  bug against network manager, that it doesn't start nfs for wireless networks, only wires - if that seems to be the case.
Comment 24 Ian Smith 2010-10-28 10:35:00 UTC
Hi Noel,

Just a thought.

I often find when I change anything to do with network settings that the firewalls block NFS shares initially, even though they are set up to allow the standard NFS ports.

It could be worth stopping both firewalls temporarily, then restarting your NFS client. That usually works for me.

Hope this helps.

PS: If it does work, please let me know, and I'll file a bug report for the firewall.
Comment 25 Marcus Meissner 2010-11-10 17:07:04 UTC
We just released a SUSE Linux Enterprise 11 SP1 kernel update, which mentions/fixes this bug. The released kernel version is 2.6.32.24-0.2.1.
Comment 26 Swamp Workflow Management 2010-11-10 20:24:01 UTC
Update released for: btrfs-kmp-default, btrfs-kmp-pae, btrfs-kmp-xen, cluster-network-kmp-default, cluster-network-kmp-pae, cluster-network-kmp-xen, ext4dev-kmp-default, ext4dev-kmp-pae, ext4dev-kmp-xen, gfs2-kmp-default, gfs2-kmp-pae, gfs2-kmp-xen, hyper-v-kmp-default, hyper-v-kmp-pae, kernel-default, kernel-default-base, kernel-default-debuginfo, kernel-default-debugsource, kernel-default-devel, kernel-default-extra, kernel-desktop-devel, kernel-ec2-devel, kernel-pae, kernel-pae-base, kernel-pae-debuginfo, kernel-pae-debugsource, kernel-pae-devel, kernel-pae-extra, kernel-source, kernel-source-debuginfo, kernel-source-vanilla, kernel-syms, kernel-trace, kernel-trace-base, kernel-trace-devel, kernel-trace-extra, kernel-xen, kernel-xen-base, kernel-xen-debuginfo, kernel-xen-debugsource, kernel-xen-devel, kernel-xen-extra
Products:
SLE-DEBUGINFO 11-SP1 (i386)
SLE-DESKTOP 11-SP1 (i386)
SLE-HAE 11-SP1 (i386)
SLE-SERVER 11-SP1 (i386)
SLES4VMWARE 11-SP1 (i386)
Comment 27 Swamp Workflow Management 2010-11-10 21:10:41 UTC
Update released for: btrfs-kmp-default, cluster-network-kmp-default, ext4dev-kmp-default, gfs2-kmp-default, kernel-default, kernel-default-base, kernel-default-debuginfo, kernel-default-debugsource, kernel-default-devel, kernel-default-devel-debuginfo, kernel-default-extra, kernel-default-man, kernel-source, kernel-source-debuginfo, kernel-source-vanilla, kernel-syms, kernel-trace, kernel-trace-base, kernel-trace-debuginfo, kernel-trace-debugsource, kernel-trace-devel, kernel-trace-devel-debuginfo, kernel-trace-extra, kernel-trace-man
Products:
SLE-DEBUGINFO 11-SP1 (s390x)
SLE-HAE 11-SP1 (s390x)
SLE-SERVER 11-SP1 (s390x)
Comment 28 Swamp Workflow Management 2010-11-10 21:35:24 UTC
Update released for: btrfs-kmp-default, btrfs-kmp-ppc64, cluster-network-kmp-default, cluster-network-kmp-ppc64, ext4dev-kmp-default, ext4dev-kmp-ppc64, gfs2-kmp-default, gfs2-kmp-ppc64, kernel-default, kernel-default-base, kernel-default-debuginfo, kernel-default-debugsource, kernel-default-devel, kernel-default-extra, kernel-kdump, kernel-kdump-debuginfo, kernel-kdump-debugsource, kernel-ppc64, kernel-ppc64-base, kernel-ppc64-debuginfo, kernel-ppc64-debugsource, kernel-ppc64-devel, kernel-ppc64-extra, kernel-source, kernel-source-debuginfo, kernel-source-vanilla, kernel-syms, kernel-trace, kernel-trace-base, kernel-trace-debuginfo, kernel-trace-debugsource, kernel-trace-devel, kernel-trace-extra
Products:
SLE-DEBUGINFO 11-SP1 (ppc64)
SLE-HAE 11-SP1 (ppc64)
SLE-SERVER 11-SP1 (ppc64)
Comment 29 Swamp Workflow Management 2010-11-10 21:38:40 UTC
Update released for: kernel-ec2, kernel-ec2-base, kernel-ec2-devel, kernel-ec2-extra
Products:
SLE-DEBUGINFO 11-SP1 (i386)
SLE-SERVER 11-SP1 (i386)
Comment 30 Swamp Workflow Management 2010-11-10 21:46:43 UTC
Update released for: btrfs-kmp-default, cluster-network-kmp-default, ext4dev-kmp-default, gfs2-kmp-default, kernel-default, kernel-default-base, kernel-default-debuginfo, kernel-default-debugsource, kernel-default-devel, kernel-default-devel-debuginfo, kernel-default-extra, kernel-source, kernel-source-debuginfo, kernel-source-vanilla, kernel-syms, kernel-trace, kernel-trace-base, kernel-trace-debuginfo, kernel-trace-debugsource, kernel-trace-devel, kernel-trace-devel-debuginfo, kernel-trace-extra
Products:
SLE-DEBUGINFO 11-SP1 (ia64)
SLE-HAE 11-SP1 (ia64)
SLE-SERVER 11-SP1 (ia64)
Comment 31 Swamp Workflow Management 2010-11-10 22:05:55 UTC
Update released for: btrfs-kmp-default, btrfs-kmp-xen, cluster-network-kmp-default, cluster-network-kmp-xen, ext4dev-kmp-default, ext4dev-kmp-xen, gfs2-kmp-default, gfs2-kmp-xen, hyper-v-kmp-default, kernel-default, kernel-default-base, kernel-default-debuginfo, kernel-default-debugsource, kernel-default-devel, kernel-default-devel-debuginfo, kernel-default-extra, kernel-desktop-devel, kernel-ec2-devel, kernel-source, kernel-source-debuginfo, kernel-source-vanilla, kernel-syms, kernel-trace, kernel-trace-base, kernel-trace-debuginfo, kernel-trace-debugsource, kernel-trace-devel, kernel-trace-devel-debuginfo, kernel-trace-extra, kernel-xen, kernel-xen-base, kernel-xen-debuginfo, kernel-xen-debugsource, kernel-xen-devel, kernel-xen-devel-debuginfo, kernel-xen-extra
Products:
SLE-DEBUGINFO 11-SP1 (x86_64)
SLE-DESKTOP 11-SP1 (x86_64)
SLE-HAE 11-SP1 (x86_64)
SLE-SERVER 11-SP1 (x86_64)
SLES4VMWARE 11-SP1 (x86_64)
Comment 32 Swamp Workflow Management 2010-11-10 22:48:07 UTC
Update released for: kernel-ec2, kernel-ec2-base, kernel-ec2-debuginfo, kernel-ec2-debugsource, kernel-ec2-devel, kernel-ec2-devel-debuginfo, kernel-ec2-extra
Products:
SLE-DEBUGINFO 11-SP1 (x86_64)
SLE-SERVER 11-SP1 (x86_64)
Comment 33 Swamp Workflow Management 2010-11-11 01:09:10 UTC
Update released for: kernel-default-extra
Products:
SLE-SERVER 11-EXTRA (ia64)
Comment 34 Swamp Workflow Management 2010-11-11 01:10:35 UTC
Update released for: kernel-default-extra
Products:
SLE-SERVER 11-EXTRA (s390x)
Comment 35 Swamp Workflow Management 2010-11-11 01:11:35 UTC
Update released for: kernel-default-extra, kernel-ppc64-extra
Products:
SLE-SERVER 11-EXTRA (ppc64)
Comment 36 Swamp Workflow Management 2010-11-11 01:12:35 UTC
Update released for: kernel-default-extra, kernel-xen-extra
Products:
SLE-SERVER 11-EXTRA (x86_64)
Comment 37 Swamp Workflow Management 2010-11-11 01:13:39 UTC
Update released for: kernel-default-extra, kernel-pae-extra, kernel-xen-extra
Products:
SLE-SERVER 11-EXTRA (i386)
Comment 38 Noel Carneiro 2010-11-23 02:31:53 UTC
(In reply to comment #24)
Hi, Neil/Ian.

I turn off the firewall but it didn't work. However, it worked when I installed NM-gnome. I don't know why but it started working after configuring nmconnection-editor. Maybe some file is missing in NM?

Best regards,

Noel Carneiro

> Hi Noel,
> 
> Just a thought.
> 
> I often find when I change anything to do with network settings that the
> firewalls block NFS shares initially, even though they are set up to allow the
> standard NFS ports.
> 
> It could be worth stopping both firewalls temporarily, then restarting your NFS
> client. That usually works for me.
> 
> Hope this helps.
> 
> PS: If it does work, please let me know, and I'll file a bug report for the
> firewall.
Comment 39 Neil Brown 2011-02-09 03:23:14 UTC
I'm going to close this bug now...
I think everyone is happy and I think some bugs have been fixed upstream at least
and are probably fix in opensuse by now too. - 11.4 at least.

Please re-open if there is anything outstanding.

Thanks.
Comment 40 Swamp Workflow Management 2013-06-10 11:26:42 UTC
openSUSE-SU-2013:0927-1: An update that solves 75 vulnerabilities and has 1406 fixes is now available.

Category: security (low)
Bug References: 176921,225091,299267,436025,439348,445872,458027,467688,468397,470671,476525,486001,501563,503038,527028,550447,550906,552250,556135,556234,556572,556959,557479,557710,560420,560454,561811,562046,562095,563905,564618,564635,564638,564640,565027,565124,565845,566332,566768,567283,567376,567474,567703,568147,568848,569050,569194,569238,569606,569687,569916,570284,570320,570492,570526,572119,572294,572661,572834,573237,573330,573401,573565,573722,573803,574006,574771,575047,575072,575073,575074,575181,575194,575199,575396,575409,575752,575884,575923,575956,576277,577203,577232,577355,577358,577529,577753,577771,577856,577937,577967,578046,578059,578429,578430,578572,578639,578927,578980,578981,579060,579111,579137,579439,579636,579639,579647,579682,580105,580140,580373,580381,580416,580793,580799,580823,580991,581057,581103,581188,581199,581567,581718,581940,582552,582643,582730,582872,582878,583022,583296,583356,583539,583677,583900,584197,584209,584218,584320,584343,584451,584453,584475,584508,584574,584617,584691,584728,584820,584875,584958,585034,585124,585179,585191,585241,585269,58529,585296,585385,585463,585490,585492,585608,585711,585743,586343,586364,586417,586684,586806,587073,587114,587125,587199,587427,587562,587669,587673,587681,587692,587739,587746,587782,588008,588929,588972,588994,589280,589449,589650,589651,589652,589654,589655,589656,589657,589660,589679,589804,589906,590154,590217,590401,590415,590585,590687,590705,590727,590856,590859,590926,590927,590937,590980,590995,590996,591039,591293,591318,591376,591377,591401,591473,591513,591556,591870,591950,592176,592472,592703,592943,593318,593319,593731,593934,594066,594131,594271,594305,594367,594391,594399,594473,594583,594586,594835,594997,595074,595215,595609,595755,595960,596031,596113,596460,596462,596646,596720,596783,596943,597120,597135,597583,597648,597650,598246,598253,598270,598308,598493,598553,598677,598837,599279,599671,599814,599955,600043,600256,600261,600364,600375,600516,600535,600579,600983,601168,601198,602150,602208,602232,602514,602838,602852,602969,602980,603148,603205,603387,603411,603464,603510,603528,603738,604183,605001,605321,605686,605947,606575,606743,606778,606797,606977,607123,607339,607448,607628,607890,608435,608478,609172,609196,609281,609506,610783,611094,611104,611760,612009,612407,612729,613171,613330,613542,613906,614226,614332,614349,614793,615003,615557,615630,616080,616088,616369,616464,616612,617248,617437,617464,618059,618072,618379,618424,618444,618767,619002,619007,619525,619536,619840,620020,620021,620443,620654,620904,620929,621203,621598,621715,622597,622635,622727,622868,623307,624020,624072,624340,624436,624814,624850,625167,625666,625674,626321,626880,627060,627386,627518,628180,628554,628604,629170,629263,629552,630068,630121,630132,630970,631075,631801,632317,632568,632974,632975,633026,633268,633543,633581,633585,633593,633733,634637,635425,635515,636435,636461,636561,636672,636850,637436,637502,637542,637639,637944,638258,638274,638277,638400,638613,638618,638807,638860,639161,639197,639728,639803,639944,640276,640278,640850,640878,641247,642009,642309,642313,642314,642449,642486,643173,643249,643266,643477,643513,643909,643914,643922,644219,644350,644373,644630,645659,645893,646045,646226,646542,646702,647392,647497,647567,647775,648112,648308,648647,648701,648916,649000,649187,649231,649257,649355,649473,649548,649820,650067,650109,650111,650113,650116,650185,650309,650366,650487,650545,650748,650897,651152,651218,651596,651599,651626,652024,652293,652391,652563,652603,652842,652939,652940,652945,653148,653258,653266,653800,653850,653930,654150,654169,654350,654501,654530,654581,654701,654837,654967,655027,655220,655278,655434,655964,655973,656219,656471,656587,657248,657324,657350,657412,657415,657763,658037,658254,658337,658353,658413,658461,658464,658551,658829,659101,659144,659394,659419,660507,660546,661605,662031,662202,662212,662335,662340,662360,662432,662673,662722,662800,662931,663313,663513,663537,663582,663678,663706,664149,664463,665480,665499,665524,665663,666012,666836,666842,666893,667226,667766,668483,668545,668633,668872,668895,668896,668898,668927,669058,669571,669740,670129,670154,670465,670615,670816,670864,670868,670979,671256,671274,671296,671479,671483,671943,672292,672453,672492,672923,673516,674189,674549,675115,675127,675963,676419,676890,677286,677391,677398,677563,677783,678531,678728,679301,679812,680809,680814,680845,681242,682076,682251,682319,682333,682482,682755,682940,682941,683107,683282,683569,684085,684297,684472,684852,684927,685226,685276,686325,686404,686702,686813,686921,686980,687046,687049,687065,687068,687478,687759,687760,687789,688326,688912,688996,689227,689230,689290,689435,689436,689596,689746,690073,690082,690611,690683,691216,691269,691408,691536,691538,691632,691633,691693,691714,691742,691829,691979,692343,692454,692459,692460,692709,693149,693513,693636,694963,694966,695066,695067,695243,695605,695898,696107,696586,697255,697777,697783,697913,697942,697944,698050,698053,698102,698269,698272,698524,698540,698548,698572,698604,698774,698776,698779,698793,698797,698801,698803,698949,699085,699087,699089,699092,699265,699354,699495,699534,699687,699701,699703,699842,699916,699946,699950,699990,700009,700080,700084,7000995,700332,700391,700401,700445,700448,700512,700514,700632,700637,700638,700777,700856,701163,701170,701183,701198,701622,701686,701977,702133,702384,702470,702604,702651,702736,702832,702838,703013,703100,703156,703204,703422,703426,703653,703786,704163,704280,704361,704592,704917,704957,705433,705472,705487,705551,705906,705962,706131,706410,706472,706473,706485,706557,706587,706696,706821,706838,706841,706882,706913,707094,707270,707389,707666,707988,708160,708204,708269,708274,708296,708376,708635,708636,708720,708730,708809,708836,709063,709064,709068,709075,709266,709269,709300,709332,709467,709528,709866,709974,710352,710790,710868,710969,711201,711285,711297,711378,711519,711566,711592,711684,711765,712404,712405,712420,712899,713134,713148,713448,713490,713675,713707,714096,714106,714215,714274,714552,714604,714605,714643,714786,714789,714911,715031,715496,715635,716023,716708,716850,716970,716971,717142,717160,717248,717263,717372,717500,717573,717574,717797,717840,717848,717884,717996,718149,718160,718165,718265,718279,718366,718401,718518,718521,718551,718831,718863,718910,718918,718936,718950,719029,719079,719090,719280,719296,719408,719592,719645,719693,719846,719911,719943,720075,720353,720451,720456,720457,720458,720459,720460,720536,720661,720674,720741,720750,720753,720946,720960,720996,721007,721042,721045,721206,721212,721239,721246,721337,721410,721464,721517,721587,721738,721840,721857,721874,722092,722260,722265,722414,722433,722437,722449,722560,722569,722635,722640,722646,722793,722795,722993,723008,723171,723597,723884,724014,724133,724227,724544,724577,724616,724620,724734,724800,724865,724906,725077,725208,725344,725346,725350,725355,725424,725592,725594,725709,725836,725878,726023,726075,726156,726176,726214,726309,726333,726400,726504,726699,726703,726710,726850,726999,727250,727324,727367,727415,727453,727493,727611,727638,727650,727793,727814,728035,728043,728086,728195,728329,728597,728626,729122,729466,729518,729548,7297470,729789,729840,729854,730103,730117,730265,730440,730660,730731,730749,731009,731029,731035,731261,731387,73149,731701,731739,731770,731809,731945,731999,732070,732082,732132,732178,732296,732335,732371,732471,732535,732582,733236,733248,733270,733390,733435,733543,733702,733761,733822,733863,734213,734522,734526,734771,734900,735216,735277,735369,735417,735543,735765,735800,735909,736018,736079,736182,736255,736257,736669,736743,736896,737328,737574,737833,737969,738056,738117,738210,738284,738400,738421,738528,738567,738583,738597,738679,738742,739020,739111,739356,739381,739728,739837,739856,740180,740281,740291,740347,740780,740866,740898,740969,740997,741117,741191,741478,741814,741824,741863,742181,742210,742279,742353,742570,742845,742871,743212,743232,743518,743579,743735,743978,744198,744206,744253,744314,744315,744392,744400,744404,744652,744655,744692,744758,744795,744963,745088,745400,745422,745424,745741,745867,745876,745929,746373,746454,746509,746526,746579,746717,746938,747071,747159,747404,747867,747878,747944,748112,748384,748456,748463,748629,748632,748806,748827,748854,748862,748896,749049,749115,749417,749543,749651,749787,749980,750041,750173,750402,750426,750459,750995,751015,751171,751322,751550,751743,751885,751903,751916,752022,752067,752352,752408,752484,752544,752599,752634,752972,753172,753353,753617,753698,754052,754085,754391,754428,754670,754690,754898,754969,755178,755537,755620,755758,755812,756050,756236,756276,756585,756821,756940,757059,757077,757202,757205,757289,757315,757373,757517,757565,757719,757783,757789,757950,758104,758279,758532,758540,758703,758731,758833,759336,759340,759539,759541,759657,759805,759908,759971,760015,760237,760279,760346,760806,760833,760974,761087,761158,761245,761387,761772,761774,761775,762099,762158,762214,762259,762285,762329,762366,762414,762424,762693,762991,762992,763026,763198,763267,763307,763463,763485,763628,763654,763717,763754,763858,763954,763968,764091,764150,764209,764339,764500,764717,764900,765253,765524,766027,766445,766654,766733,767281,767469,767610,767684,767983,768052,768084,768470,768504,768632,769035,769195,769251,769407,769685,770034,770238,770269,770695,770763,771102,771242,771361,771398,771428,771706,771778,772407,772420,772427,772454,772473,772483,772566,772786,772831,772893,773006,773007,773251,773267,773319,773320,773383,773406,773487,773606,773688,773699,773831,773878,774073,774289,774500,774523,774612,774859,774902,774964,774973,775182,775373,775394,775685,775984,776019,776044,776081,776095,776127,776144,776787,776896,777024,777269,777283,778082,778136,778334,778630,778822,779294,779330,779461,779462,779577,779699,779750,779969,780008,780012,780216,780461,780876,781018,781327,781484,781574,782369,782721,783965,784192,784334,784576,785100,785496,785554,785851,786976,787168,787202,787348,787821,787848,788277,788452,789010,789115,789235,789648,789703,789836,789993,790457,790498,790920,790935,791498,791853,791904,792270,792500,792656,792834,793104,793139,793593,793671,794231,794824,795354,797042,798960,799209,799275,799909,803056,804154
CVE References: CVE-2009-4537,CVE-2010-0415,CVE-2010-0622,CVE-2010-0623,CVE-2010-1173,CVE-2010-1437,CVE-2010-2798,CVE-2010-2803,CVE-2010-2943,CVE-2010-2946,CVE-2010-2959,CVE-2010-2960,CVE-2010-2962,CVE-2010-2963,CVE-2010-3015,CVE-2010-3078,CVE-2010-3079,CVE-2010-3080,CVE-2010-3084,CVE-2010-3437,CVE-2010-3699,CVE-2010-3705,CVE-2010-3861,CVE-2010-3874,CVE-2010-3875,CVE-2010-3876,CVE-2010-3877,CVE-2010-3880,CVE-2010-3881,CVE-2010-4072,CVE-2010-4073,CVE-2010-4075,CVE-2010-4076,CVE-2010-4077,CVE-2010-4082,CVE-2010-4083,CVE-2010-4157,CVE-2010-4158,CVE-2010-4160,CVE-2010-4162,CVE-2010-4163,CVE-2010-4165,CVE-2010-4169,CVE-2010-4175,CVE-2010-4243,CVE-2010-4251,CVE-2010-4258,CVE-2010-4342,CVE-2010-4529,CVE-2010-4656,CVE-2010-4668,CVE-2011-0521,CVE-2011-0710,CVE-2011-1573,CVE-2011-1593,CVE-2011-2479,CVE-2011-2494,CVE-2011-4097,CVE-2011-4127,CVE-2011-4131,CVE-2011-4622,CVE-2012-0045,CVE-2012-0056,CVE-2012-1179,CVE-2012-1601,CVE-2012-2133,CVE-2012-2372,CVE-2012-2373,CVE-2012-2390,CVE-2012-2745,CVE-2012-3412,CVE-2012-3430,CVE-2012-4461,CVE-2012-5517,CVE-2013-0871
Sources used:
openSUSE 11.4 (src):    drbd-8.3.11-10.1, iscsitarget-1.4.19-14.3, kernel-docs-3.0.58-30.3, kernel-source-3.0.58-30.1, kernel-syms-3.0.58-30.1, ndiswrapper-1.57rc1-16.2, omnibook-20100406-9.2, open-vm-tools-2012.8.8.1-37.2, preload-1.2-6.25.2, systemtap-1.4-1.5.1, virtualbox-4.0.12-0.54.2