[dead]
modinfo iwlwifi
shows us that 11n_disable is actually a bitmask: parm: 11n_disable:disable 11n functionality, bitmap: 1: full, 2: disable agg TX, 4: disable agg RX, 8 enable agg TX (uint)
Ahah, your story is starting to make more sense! Setting the value above 8 would set the 'enable agg TX' bit in this bitmask. print "\n".join(map(str, range(1,1001)))
or print "\n".join(str(i) for i in range(1,1001))